Started on tests
[szyfrow.git] / setup.py
1 import setuptools
2
3 with open("README.md", "r") as fh:
4 long_description = fh.read()
5
6 setuptools.setup(
7 name="szyfrow",
8 version="0.0.6",
9 author="Neil Smith",
10 author_email="neil.szyfrow@njae.me.uk",
11 description="Tools for using and breaking simple ciphers",
12 long_description=long_description,
13 long_description_content_type="text/markdown",
14 url="https://github.com/NeilNjae/szyfrow",
15 packages=setuptools.find_packages(),
16 classifiers=[
17 "Programming Language :: Python :: 3",
18 "License :: OSI Approved :: MIT License",
19 "Operating System :: OS Independent",
20 "Development Status :: 4 - Beta",
21 "Intended Audience :: Education",
22 "Natural Language :: English",
23 "Topic :: Security :: Cryptography",
24 ],
25 python_requires='>=3.7',
26 install_requires=['numpy'],
27 include_package_data=True,
28 setup_requires=['pytest-runner', 'numpy'],
29 tests_require=['pytest'],
30 test_suite="tests",
31 )