Many tests done, still more to come.
[szyfrow.git] / setup.py
index fdb5af53d6ffdf0b09c31577fecc01c26f00893a..b8f910b2ef5714407549f96f7de04119ae8d98db 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -17,7 +17,15 @@ setuptools.setup(
         "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=['numpy'],
     include_package_data=True,
+    setup_requires=['pytest-runner', 'numpy'],
+    tests_require=['pytest'],
+    test_suite="tests",
 )