X-Git-Url: http://www.git.cypherpunks.ru/?a=blobdiff_plain;f=setup.py;h=aa255a53d11047aa1579b593d7062b87dea6f78a;hb=3f92aa951499f16e7d33d31ff2e3db925cbdb1d2;hp=accf9d13f61faed10e19ac37f63881b031854f91;hpb=43ea52850f0fa16a906192ffbce8a35233bf750b;p=pygost.git diff --git a/setup.py b/setup.py index accf9d1..aa255a5 100644 --- a/setup.py +++ b/setup.py @@ -10,17 +10,19 @@ setup( author="Sergey Matveev", author_email="stargrave@stargrave.org", url="http://pygost.cypherpunks.ru/", - license="GPLv3+", + 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"], }, @@ -30,10 +32,10 @@ setup( "COPYING", "INSTALL", "NEWS", - "PUBKEY.asc", "README", "THANKS", "VERSION", )), ), + tests_require=["pyderasn~=4.4"], )