From: Sergey Matveev Date: Fri, 22 Feb 2019 13:13:02 +0000 (+0300) Subject: Prepare for uploading to PyPI X-Git-Url: http://www.git.cypherpunks.ru/?p=pyssss.git;a=commitdiff_plain;h=5ea6551a0fa3fe3cbc60487cf2b13832bf451bcc Prepare for uploading to PyPI --- diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..f047789 --- /dev/null +++ b/AUTHORS @@ -0,0 +1 @@ +* Sergey Matveev diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..e31df02 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,6 @@ +include AUTHORS +include COPYING +include COPYING.LESSER +include README +include test_ssss.py +include VERSION diff --git a/README b/README index 422769b..245bad0 100644 --- a/README +++ b/README @@ -1,3 +1,3 @@ Pure Python Shamir's secret sharing scheme implementation. -pyssss is free software: see the file COPYING for copying conditions. +ssss is free software: see the file COPYING for copying conditions. diff --git a/VERSION b/VERSION new file mode 100644 index 0000000..49d5957 --- /dev/null +++ b/VERSION @@ -0,0 +1 @@ +0.1 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"], +) diff --git a/ssss.py b/ssss.py index 3f019ca..8e0569c 100644 --- a/ssss.py +++ b/ssss.py @@ -1,5 +1,5 @@ # coding: utf-8 -# pyssss -- Pure Python Shamir's secret sharing scheme implementation +# ssss -- Pure Python Shamir's secret sharing scheme implementation # Copyright (C) 2015-2019 Sergey Matveev # # This program is free software: you can redistribute it and/or modify