X-Git-Url: https://git.njae.me.uk/?a=blobdiff_plain;f=setup.py;h=fdb5af53d6ffdf0b09c31577fecc01c26f00893a;hb=deed628b25281baff05b8ec8310a7458ac298d7b;hp=cc0b5254aed1d71247b73f350ef4d702c76d9877;hpb=a870050db6bc974b1bb0d132001750b6624fb43f;p=szyfrow.git diff --git a/setup.py b/setup.py index cc0b525..fdb5af5 100644 --- a/setup.py +++ b/setup.py @@ -5,18 +5,19 @@ with open("README.md", "r") as fh: setuptools.setup( name="szyfrow", - version="0.0.1", + version="0.0.6", author="Neil Smith", author_email="neil.szyfrow@njae.me.uk", description="Tools for using and breaking simple ciphers", long_description=long_description, long_description_content_type="text/markdown", - url="https://github.com/pypa/sampleproject", + url="https://github.com/NeilNjae/szyfrow", packages=setuptools.find_packages(), classifiers=[ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ], - python_requires='>=3.6', + python_requires='>=3.7', + include_package_data=True, )