X-Git-Url: http://www.git.cypherpunks.ru/?p=pyderasn.git;a=blobdiff_plain;f=setup.py;h=1cca9ca8860727ba1b79bb01c77be4cf94a50ce1;hp=54b056c9ae5f644f66c24a3cd92ebafcb90d3885;hb=HEAD;hpb=16f6fd50b698cba058661ceba684237bd82229e4 diff --git a/setup.py b/setup.py index 54b056c..1cca9ca 100644 --- a/setup.py +++ b/setup.py @@ -8,11 +8,11 @@ version = open("VERSION", "rb").read().strip().decode("ascii") setup( name="pyderasn", version=version, - description="Python ASN.1 DER/BER codec with abstract structures", + description="Python ASN.1 DER/CER/BER codec with abstract structures", long_description=open("README", "rb").read().decode("utf-8"), author="Sergey Matveev", author_email="stargrave@stargrave.org", - url="http://pyderasn.cypherpunks.ru/", + url="http://www.pyderasn.cypherpunks.ru/", license="LGPLv3", classifiers=[ "Development Status :: 5 - Production/Stable", @@ -23,11 +23,12 @@ setup( "License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)", "Natural Language :: English", "Operating System :: OS Independent", - "Programming Language :: Python :: 2", "Programming Language :: Python :: 3", "Topic :: Communications", "Topic :: Software Development :: Libraries :: Python Modules", ], py_modules=["pyderasn"], - install_requires=["six"], + extras_require={ + "tz": ["python-dateutil~=2.7"], + }, )