Skip to content

Instantly share code, notes, and snippets.

@tonyfast
Last active June 10, 2019 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tonyfast/c0e33038dbeedfa6a416ce9d6cf94803 to your computer and use it in GitHub Desktop.
Save tonyfast/c0e33038dbeedfa6a416ce9d6cf94803 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
import setuptools
__name__ == "__main__" and setuptools.setup(
name='jams',
version="0.1.0",
author="deathbeds",
author_email="tony.fast@gmail.com",
description="A decentralized approach to blogging, testing, and documentation.",
url="https://github.com/deathbeds/jams",
python_requires=">=3.6",
license="BSD-3-Clause",
install_requires=[],
include_package_data=True,
packages=setuptools.find_packages('src'),
package_dir={'': 'src'},
entry_points={"pytest11": []},
classifiers=(
"Natural Language :: English",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",),
zip_safe=False,
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment