]> Cypherpunks.ru repositories - pygost.git/blobdiff - setup.py
Partly supported ContentInfo.SignedData.certificates
[pygost.git] / setup.py
index 3f0d1c38a58990478a3b42bc8e9765541744d89b..0093ad01c6df98a8a8a971f1b00b6c8d61adef9c 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -6,6 +6,7 @@ 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://pygost.cypherpunks.ru/",
@@ -15,11 +16,13 @@ setup(
         "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", "pygost.asn1schemas"],
     package_data={
         "pygost": ["stubs/**/*.pyi"],
     },
@@ -35,4 +38,5 @@ setup(
             "VERSION",
         )),
     ),
+    tests_require=["pyderasn~=4.4"],
 )