X-Git-Url: http://www.git.cypherpunks.ru/?a=blobdiff_plain;f=setup.py;h=558b8cf78639aa2167bbe8e82202c6c86fb0d2b1;hb=227f7f5434fbe5abc3cd02208a81f2dd6c25b7f4;hp=b9e28c64f0eabfd1a60bd780a55f4c121b850466;hpb=695c396878c00952e45b11958ffd27928f1b8cfa;p=pygost.git diff --git a/setup.py b/setup.py index b9e28c6..558b8cf 100644 --- a/setup.py +++ b/setup.py @@ -6,20 +6,23 @@ setup( name="pygost", version=version, description="Pure Python GOST cryptographic functions library", + long_description=open("README", "rb").read().decode("utf-8"), author="Sergey Matveev", author_email="stargrave@stargrave.org", url="http://pygost.cypherpunks.ru/", license="GPLv3+", - classifiers=( + 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", - ), + ], + packages=["pygost"], package_data={ "pygost": ["stubs/**/*.pyi"], },