X-Git-Url: http://www.git.cypherpunks.ru/?a=blobdiff_plain;f=setup.py;h=724a16123b4566e954f0a7bc9dd7f6bec0cf361b;hb=6ffa181faaed35d38e9057c473363b5b6e44efd6;hp=343a01e0bb30b1819f192dce93c0944e5fe9f2c1;hpb=2d45a224943c79e95cbd4913b44420788bc6c17d;p=pyderasn.git diff --git a/setup.py b/setup.py index 343a01e..724a161 100644 --- a/setup.py +++ b/setup.py @@ -8,26 +8,24 @@ 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/", - license="LGPLv3+", + url="http://www.pyderasn.cypherpunks.ru/", + license="LGPLv3", classifiers=[ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: System Administrators", "Intended Audience :: Telecommunications Industry", - "License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)", + "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"], )