Created
July 9, 2018 17:20
-
-
Save shaypal5/a3b5e5a5a94109023c8eb3204cb8efc5 to your computer and use it in GitHub Desktop.
An example setup.py file for the example chocobo package
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Setup for the chocobo package.""" | |
import setuptools | |
with open('README.md') as f: | |
README = f.read() | |
setuptools.setup( | |
author="Shay Palachy", | |
author_email="[email protected]", | |
name='chocobo', | |
license="MIT", | |
description='chocobo is a python package for delicious chocobo recipes.', | |
version='v0.0.3', | |
long_description=README, | |
url='https://github.com/shaypal5/chocobo', | |
packages=setuptools.find_packages(), | |
python_requires=">=3.5", | |
install_requires=['requests'], | |
classifiers=[ | |
# Trove classifiers | |
# (https://pypi.python.org/pypi?%3Aaction=list_classifiers) | |
'Development Status :: 4 - Beta', | |
'License :: OSI Approved :: MIT License', | |
'Programming Language :: Python', | |
'Programming Language :: Python :: 3.5', | |
'Programming Language :: Python :: 3.6', | |
'Topic :: Software Development :: Libraries', | |
'Topic :: Software Development :: Libraries :: Python Modules', | |
'Intended Audience :: Developers', | |
], | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment