]> Cypherpunks.ru repositories - pyderasn.git/blob - setup.py
Raise copyright years
[pyderasn.git] / setup.py
1 # coding: utf-8
2
3 from setuptools import setup
4
5
6 version = open("VERSION", "rb").read().strip().decode("ascii")
7
8 setup(
9     name="pyderasn",
10     version=version,
11     description="Python ASN.1 DER/CER/BER codec with abstract structures",
12     long_description=open("README", "rb").read().decode("utf-8"),
13     author="Sergey Matveev",
14     author_email="stargrave@stargrave.org",
15     url="http://www.pyderasn.cypherpunks.ru/",
16     license="LGPLv3",
17     classifiers=[
18         "Development Status :: 5 - Production/Stable",
19         "Environment :: Console",
20         "Intended Audience :: Developers",
21         "Intended Audience :: System Administrators",
22         "Intended Audience :: Telecommunications Industry",
23         "License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
24         "Natural Language :: English",
25         "Operating System :: OS Independent",
26         "Programming Language :: Python :: 3",
27         "Topic :: Communications",
28         "Topic :: Software Development :: Libraries :: Python Modules",
29     ],
30     py_modules=["pyderasn"],
31     extras_require={
32         "tz": ["python-dateutil~=2.7"],
33     },
34 )