Skip to content

Instantly share code, notes, and snippets.

@brinnaebent
Created June 22, 2020 23:03
Show Gist options
  • Save brinnaebent/162e354dbcb8b1fa1b3c5205893defb5 to your computer and use it in GitHub Desktop.
Save brinnaebent/162e354dbcb8b1fa1b3c5205893defb5 to your computer and use it in GitHub Desktop.
from distutils.core import setup
setup(name='packagename',
packages = ['packagename'],
version='0.1',
description='Brief Description HERE',
url='https://github.com/yourusername/packagename',
download_url = 'https://github.com/yourusername/packagename/archive/0.1.tar.gz', #FILL IN LATER
author='YOU',
author_email='YOUR EMAIL',
keywords = ['keyowrd1', 'keyword2', 'keyword3'],
license='MIT', #YOUR LICENSE HERE!
install_requires=['pandas','numpy',], #YOUR DEPENDENCIES HERE
classifiers=[
'Development Status :: 3 - Alpha', # "3 - Alpha", "4 - Beta" or "5 - Production/Stable"
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License', # Your License Here
'Programming Language :: Python :: 3', # List Python versions that you support Here
'Programming Language :: Python :: 3.4',
],
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment