]> Cypherpunks.ru repositories - pyderasn.git/blob - setup.py
Ability to seek in command line utility
[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 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://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 or later (LGPLv3+)",
24         "Natural Language :: English",
25         "Operating System :: OS Independent",
26         "Programming Language :: Python :: 2",
27         "Programming Language :: Python :: 3",
28         "Topic :: Communications",
29         "Topic :: Software Development :: Libraries :: Python Modules",
30     ],
31     py_modules=["pyderasn"],
32     install_requires=["six"],
33 )