X-Git-Url: http://www.git.cypherpunks.ru/?a=blobdiff_plain;f=setup.py;h=0093ad01c6df98a8a8a971f1b00b6c8d61adef9c;hb=ac2726a2dd6c876a1c3b90e7e0234ebea3853115;hp=893f7e6a18db2406c4c0af192f5d489a27a98dbe;hpb=69e9748707d0e6f502f955063e97c1cb238ca388;p=pygost.git diff --git a/setup.py b/setup.py index 893f7e6..0093ad0 100644 --- a/setup.py +++ b/setup.py @@ -6,25 +6,28 @@ 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/", + 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+)", "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", @@ -33,6 +36,7 @@ setup( "README", "THANKS", "VERSION", - ], - }, + )), + ), + tests_require=["pyderasn~=4.4"], )