]> Cypherpunks.ru repositories - pygost.git/blob - setup.py
THANKS appeared
[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://www.cypherpunks.ru/pygost/",
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     packages=["pygost", "supplementary"],
24     package_dir={"supplementary": "."},
25     package_data={
26         "pygost": ["stubs/**/*.pyi"],
27         "supplementary": [
28             "AUTHORS",
29             "COPYING",
30             "INSTALL",
31             "NEWS",
32             "PUBKEY.asc",
33             "README",
34             "THANKS",
35             "VERSION",
36         ],
37     },
38 )