Skip to content

Instantly share code, notes, and snippets.

@shaypal5
Created July 9, 2018 17:20
Show Gist options
  • Save shaypal5/a3b5e5a5a94109023c8eb3204cb8efc5 to your computer and use it in GitHub Desktop.
Save shaypal5/a3b5e5a5a94109023c8eb3204cb8efc5 to your computer and use it in GitHub Desktop.
An example setup.py file for the example chocobo package
"""Setup for the chocobo package."""
import setuptools
with open('README.md') as f:
README = f.read()
setuptools.setup(
author="Shay Palachy",
author_email="shay.palachy@gmail.com",
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