]> Cypherpunks.ru repositories - pygost.git/blob - setup.py
accf9d13f61faed10e19ac37f63881b031854f91
[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     long_description=open("README", "rb").read().decode("utf-8"),
10     author="Sergey Matveev",
11     author_email="stargrave@stargrave.org",
12     url="http://pygost.cypherpunks.ru/",
13     license="GPLv3+",
14     classifiers=[
15         "Development Status :: 5 - Production/Stable",
16         "Intended Audience :: Developers",
17         "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
18         "Natural Language :: English",
19         "Programming Language :: Python :: 2",
20         "Programming Language :: Python :: 3",
21         "Topic :: Security :: Cryptography",
22         "Topic :: Software Development :: Libraries :: Python Modules",
23     ],
24     package_data={
25         "pygost": ["stubs/**/*.pyi"],
26     },
27     data_files=(
28         ('', (
29             "AUTHORS",
30             "COPYING",
31             "INSTALL",
32             "NEWS",
33             "PUBKEY.asc",
34             "README",
35             "THANKS",
36             "VERSION",
37         )),
38     ),
39 )