Skip to content

Instantly share code, notes, and snippets.

@gangulymadhura
Created July 11, 2021 07:21
Show Gist options
  • Save gangulymadhura/290486c1dadbcaf3dbd40557db94c9e6 to your computer and use it in GitHub Desktop.
Save gangulymadhura/290486c1dadbcaf3dbd40557db94c9e6 to your computer and use it in GitHub Desktop.
from setuptools import setup
setup(name='mydemopkg',
version='v0.1',
author="Madhura Ganguly",
author_email='gangulym23@gmail.com',
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