]> Cypherpunks.ru repositories - pygost.git/blobdiff - setup.py
Mention CBC key meshing in feature list
[pygost.git] / setup.py
index a28d3c23f6b8d7a0615b23ce32cbd392d3b051dc..b17daef04437535e482ee66735ffd546016b79cf 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,16 +16,18 @@ 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", "supplementary"],
-    package_dir={"supplementary": "."},
+    packages=["pygost"],
     package_data={
         "pygost": ["stubs/**/*.pyi"],
-        "supplementary": [
+    },
+    data_files=(
+        ('', (
             "AUTHORS",
             "COPYING",
             "INSTALL",
@@ -33,6 +36,7 @@ setup(
             "README",
             "THANKS",
             "VERSION",
-        ],
-    },
+        )),
+    ),
+    tests_require=["pyderasn~=4.4"],
 )