Created
June 22, 2020 23:03
-
-
Save brinnaebent/162e354dbcb8b1fa1b3c5205893defb5 to your computer and use it in GitHub Desktop.
This file contains 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
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