]> Cypherpunks.ru repositories - pygost.git/blob - setup.py
Tupled classifiers can not be handled by pyshop
[pygost.git] / setup.py
1 from setuptools import setup
2
3 version = open("VERSION", "rb").read().strip().decode("ascii")
4
5 setup(
6     name="pygost",
7     version=version,
8     description="Pure Python GOST cryptographic functions library",
9     author="Sergey Matveev",
10     author_email="stargrave@stargrave.org",
11     url="http://pygost.cypherpunks.ru/",
12     license="GPLv3+",
13     classifiers=[
14         "Development Status :: 5 - Production/Stable",
15         "Intended Audience :: Developers",
16         "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
17         "Natural Language :: English",
18         "Programming Language :: Python :: 2",
19         "Programming Language :: Python :: 3",
20         "Topic :: Security :: Cryptography",
21         "Topic :: Software Development :: Libraries :: Python Modules",
22     ],
23     package_data={
24         "pygost": ["stubs/**/*.pyi"],
25     },
26     data_files=(
27         ('', (
28             "AUTHORS",
29             "COPYING",
30             "INSTALL",
31             "NEWS",
32             "PUBKEY.asc",
33             "README",
34             "THANKS",
35             "VERSION",
36         )),
37     ),
38 )