Created
July 11, 2021 07:21
-
-
Save gangulymadhura/290486c1dadbcaf3dbd40557db94c9e6 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 setuptools import setup | |
setup(name='mydemopkg', | |
version='v0.1', | |
author="Madhura Ganguly", | |
author_email='[email protected]', | |
description="Printing text", | |
packages=['mydemopkg'], | |
license='MIT', | |
url="https://github.com/gangulymadhura/mydemopkg", | |
download_url='https://github.com/gangulymadhura/mydemopkg/archive/refs/tags/v0.1.tar.gz', | |
install_requires=[], | |
tests_require=['unittest'], | |
test_suite='tests', | |
python_requires='>=3.5', | |
zip_safe=False) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment