X-Git-Url: http://www.git.cypherpunks.ru/?a=blobdiff_plain;f=setup.py;h=798e8223364b71cb6486e3d50836c63788d153bf;hb=f7bca7e481d4f969ae161a6145f55bd88566ed82;hp=195c8c6e0f8b9fdcb44860c86be5f0c5bd0277dc;hpb=34c9c9a4f95eecfee75fc36d75d2ee45d1054a25;p=pygost.git diff --git a/setup.py b/setup.py index 195c8c6..798e822 100644 --- a/setup.py +++ b/setup.py @@ -6,32 +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://www.cypherpunks.ru/pygost/", - license="GPLv3+", + url="http://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", "supplementary"], - package_dir={"supplementary": "."}, + packages=["pygost", "pygost.asn1schemas"], package_data={ "pygost": ["stubs/**/*.pyi"], - "supplementary": [ + }, + data_files=( + ('', ( "AUTHORS", "COPYING", "INSTALL", "NEWS", "PUBKEY.asc", "README", + "THANKS", "VERSION", - ], - }, + )), + ), + tests_require=["pyderasn~=4.4"], )