Minor documentation updates
[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.7",
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 project_urls={
16 "Documentation": "https://neilnjae.github.io/szyfrow/szyfrow/index.html",
17 },
18 packages=setuptools.find_packages(),
19 classifiers=[
20 "Programming Language :: Python :: 3",
21 "License :: OSI Approved :: MIT License",
22 "Operating System :: OS Independent",
23 "Development Status :: 4 - Beta",
24 "Intended Audience :: Education",
25 "Natural Language :: English",
26 "Topic :: Security :: Cryptography",
27 ],
28 python_requires='>=3.7',
29 install_requires=[],
30 include_package_data=True,
31 setup_requires=['pytest-runner', 'numpy'],
32 tests_require=['pytest'],
33 test_suite="tests",
34 )