X-Git-Url: http://www.git.cypherpunks.ru/?a=blobdiff_plain;f=setup.py;h=9d198fe50936c23a8d91d6a946b3bfc51252f815;hb=c891df7589b9a159e1d43c758ccc6a5adf88e7bb;hp=5f877ce55c0601443b6716d426afe1991fc5456e;hpb=3b1728851080b3182c97c1dc3d262a6b2811359c;p=pygost.git diff --git a/setup.py b/setup.py index 5f877ce..9d198fe 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,6 +22,7 @@ setup( "Topic :: Security :: Cryptography", "Topic :: Software Development :: Libraries :: Python Modules", ], + packages=["pygost", "pygost.asn1schemas"], package_data={ "pygost": ["stubs/**/*.pyi"], }, @@ -29,12 +30,13 @@ setup( ('', ( "AUTHORS", "COPYING", + "FAQ", "INSTALL", "NEWS", - "PUBKEY.asc", "README", "THANKS", "VERSION", )), ), + tests_require=["pyderasn~=8.1"], )