X-Git-Url: http://www.git.cypherpunks.ru/?a=blobdiff_plain;f=setup.py;h=9ad663c2cf3cb47633c7ee8c5e6eb7d35233403e;hb=d59175f7b4ae74bf32dee438fb64577140e0ac23;hp=558b8cf78639aa2167bbe8e82202c6c86fb0d2b1;hpb=aef0bab3837381c5973f38803bdd2c6ee5a004f4;p=pygost.git diff --git a/setup.py b/setup.py index 558b8cf..9ad663c 100644 --- a/setup.py +++ b/setup.py @@ -10,11 +10,11 @@ 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", @@ -22,7 +22,7 @@ setup( "Topic :: Security :: Cryptography", "Topic :: Software Development :: Libraries :: Python Modules", ], - packages=["pygost"], + packages=["pygost", "pygost.asn1schemas"], package_data={ "pygost": ["stubs/**/*.pyi"], }, @@ -30,12 +30,13 @@ setup( ('', ( "AUTHORS", "COPYING", + "FAQ", "INSTALL", "NEWS", - "PUBKEY.asc", "README", "THANKS", "VERSION", )), ), + tests_require=["pyderasn~=4.4"], )