X-Git-Url: http://www.git.cypherpunks.ru/?p=pyssss.git;a=blobdiff_plain;f=setup.py;fp=setup.py;h=1155b8af0fb6326623e6f27764f67ec272651532;hp=0000000000000000000000000000000000000000;hb=5ea6551a0fa3fe3cbc60487cf2b13832bf451bcc;hpb=e18fec4bc67678b55ca9f2ccb6a49bf56e9d434d diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..1155b8a --- /dev/null +++ b/setup.py @@ -0,0 +1,29 @@ +# coding: utf-8 + +from setuptools import setup + + +version = open("VERSION", "rb").read().strip().decode("ascii") + +setup( + name="ssss", + version=version, + description="Pure Python Shamir's secret sharing scheme implementation", + long_description=open("README", "rb").read().decode("utf-8"), + author="Sergey Matveev", + author_email="stargrave@stargrave.org", + url="https://git.cypherpunks.ru/cgit.cgi/pyssss.git/", + license="LGPLv3+", + classifiers=[ + "Development Status :: 5 - Production/Stable", + "Intended Audience :: Developers", + "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", + "Natural Language :: English", + "Operating System :: OS Independent", + "Programming Language :: Python :: 2", + "Programming Language :: Python :: 3", + "Topic :: Security :: Cryptography", + "Topic :: Software Development :: Libraries :: Python Modules", + ], + py_modules=["ssss"], +)