]> Cypherpunks.ru repositories - pygost.git/blobdiff - setup.py
AppliedCryptography's Sbox equals to TestParamSet
[pygost.git] / setup.py
index a28d3c23f6b8d7a0615b23ce32cbd392d3b051dc..accf9d13f61faed10e19ac37f63881b031854f91 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/",
@@ -20,11 +21,11 @@ setup(
         "Topic :: Security :: Cryptography",
         "Topic :: Software Development :: Libraries :: Python Modules",
     ],
-    packages=["pygost", "supplementary"],
-    package_dir={"supplementary": "."},
     package_data={
         "pygost": ["stubs/**/*.pyi"],
-        "supplementary": [
+    },
+    data_files=(
+        ('', (
             "AUTHORS",
             "COPYING",
             "INSTALL",
@@ -33,6 +34,6 @@ setup(
             "README",
             "THANKS",
             "VERSION",
-        ],
-    },
+        )),
+    ),
 )