]> Cypherpunks.ru repositories - pygost.git/commitdiff
Install supplementary files as simple data, instead of package
authorSergey Matveev <stargrave@stargrave.org>
Thu, 17 Aug 2017 20:28:29 +0000 (23:28 +0300)
committerSergey Matveev <stargrave@stargrave.org>
Thu, 17 Aug 2017 20:28:29 +0000 (23:28 +0300)
setup.py

index a28d3c23f6b8d7a0615b23ce32cbd392d3b051dc..b9e28c64f0eabfd1a60bd780a55f4c121b850466 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -10,7 +10,7 @@ setup(
     author_email="stargrave@stargrave.org",
     url="http://pygost.cypherpunks.ru/",
     license="GPLv3+",
-    classifiers=[
+    classifiers=(
         "Development Status :: 5 - Production/Stable",
         "Intended Audience :: Developers",
         "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
@@ -19,12 +19,12 @@ setup(
         "Programming Language :: Python :: 3",
         "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 +33,6 @@ setup(
             "README",
             "THANKS",
             "VERSION",
-        ],
-    },
+        )),
+    ),
 )