Last active
January 14, 2021 04:26
-
-
Save mancap314/ba11687408deb509a45eabaae59be526 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
import setuptools | |
with open('README.md', 'r', encoding='utf-8') as fh: | |
long_description = fh.read() | |
setuptools.setup( | |
name='mypackage', | |
version='0.0.1', | |
author='My Name', | |
author_email='[email protected]', | |
description='My super duper Python package', | |
long_description=long_description, | |
long_description_content_type='text/markdown', | |
url='https://github.com/myusername/mypackage', | |
packages=setuptools.find_packages(), | |
classifiers=[ | |
'Programming Language :: Python :: 3', | |
'License :: OSI Approved :: MIT License', | |
'Operating System :: OS Independent', | |
], | |
python_requires='>=3.6', | |
install_requires=[ | |
'somepackage>=1.1.0', | |
] | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment