Minor documentation updates
[szyfrow.git] / setup.py
index b8f910b2ef5714407549f96f7de04119ae8d98db..ff3747a18941c5fd2af2f7296187a40b9b72bc61 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -5,13 +5,16 @@ 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",
@@ -23,7 +26,7 @@ setuptools.setup(
         "Topic :: Security :: Cryptography",
     ],
     python_requires='>=3.7',
-    install_requires=['numpy'],
+    install_requires=[],
     include_package_data=True,
     setup_requires=['pytest-runner', 'numpy'],
     tests_require=['pytest'],