]> Cypherpunks.ru repositories - pyssss.git/blob - setup.py
Prepare for uploading to PyPI
[pyssss.git] / setup.py
1 # coding: utf-8
2
3 from setuptools import setup
4
5
6 version = open("VERSION", "rb").read().strip().decode("ascii")
7
8 setup(
9     name="ssss",
10     version=version,
11     description="Pure Python Shamir's secret sharing scheme implementation",
12     long_description=open("README", "rb").read().decode("utf-8"),
13     author="Sergey Matveev",
14     author_email="stargrave@stargrave.org",
15     url="https://git.cypherpunks.ru/cgit.cgi/pyssss.git/",
16     license="LGPLv3+",
17     classifiers=[
18         "Development Status :: 5 - Production/Stable",
19         "Intended Audience :: Developers",
20         "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
21         "Natural Language :: English",
22         "Operating System :: OS Independent",
23         "Programming Language :: Python :: 2",
24         "Programming Language :: Python :: 3",
25         "Topic :: Security :: Cryptography",
26         "Topic :: Software Development :: Libraries :: Python Modules",
27     ],
28     py_modules=["ssss"],
29 )