X-Git-Url: http://www.git.cypherpunks.ru/?a=blobdiff_plain;f=setup.py;h=a49e097f6ca0f4bc08561c2b31a86cd882145117;hb=4277661e11e63906d923827e5c124877f1dc0c8d;hp=b17daef04437535e482ee66735ffd546016b79cf;hpb=f1f62178cda7b4942629e2165bc989af20d375d4;p=pygost.git diff --git a/setup.py b/setup.py index b17daef..a49e097 100644 --- a/setup.py +++ b/setup.py @@ -9,12 +9,12 @@ setup( 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", @@ -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,13 +30,13 @@ setup( ('', ( "AUTHORS", "COPYING", + "FAQ", "INSTALL", "NEWS", - "PUBKEY.asc", "README", "THANKS", "VERSION", )), ), - tests_require=["pyderasn~=4.4"], + tests_require=["pyderasn~=8.1"], )