X-Git-Url: http://www.git.cypherpunks.ru/?p=pygost.git;a=blobdiff_plain;f=setup.py;h=3daacac876dda85983d10bd9564abebefb239176;hp=3f0d1c38a58990478a3b42bc8e9765541744d89b;hb=744398c0b6a3ab223d91cbf56a72932a7c87381d;hpb=a7adf5ca0f1b4cd95d08f915a40c3272ef8f991e diff --git a/setup.py b/setup.py index 3f0d1c3..3daacac 100644 --- a/setup.py +++ b/setup.py @@ -6,33 +6,37 @@ 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+", + url="http://www.pygost.cypherpunks.ru/", + license="GPLv3", classifiers=[ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", - "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", + "License :: OSI Approved :: GNU General Public License v3 (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", "pygost.asn1schemas"], package_data={ "pygost": ["stubs/**/*.pyi"], }, data_files=( - ('', ( + ("", ( "AUTHORS", "COPYING", + "FAQ", "INSTALL", "NEWS", - "PUBKEY.asc", "README", "THANKS", "VERSION", )), ), + tests_require=["pyderasn~=8.1"], )