X-Git-Url: https://git.njae.me.uk/?a=blobdiff_plain;f=setup.py;h=ff3747a18941c5fd2af2f7296187a40b9b72bc61;hb=refs%2Fheads%2Fdocs;hp=fdb5af53d6ffdf0b09c31577fecc01c26f00893a;hpb=deed628b25281baff05b8ec8310a7458ac298d7b;p=szyfrow.git diff --git a/setup.py b/setup.py index fdb5af5..ff3747a 100644 --- a/setup.py +++ b/setup.py @@ -5,19 +5,30 @@ with open("README.md", "r") as fh: setuptools.setup( name="szyfrow", - version="0.0.6", + version="0.0.7", 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/NeilNjae/szyfrow", + project_urls={ + "Documentation": "https://neilnjae.github.io/szyfrow/szyfrow/index.html", + }, packages=setuptools.find_packages(), classifiers=[ "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", + "Development Status :: 4 - Beta", + "Intended Audience :: Education", + "Natural Language :: English", + "Topic :: Security :: Cryptography", ], python_requires='>=3.7', + install_requires=[], include_package_data=True, + setup_requires=['pytest-runner', 'numpy'], + tests_require=['pytest'], + test_suite="tests", )