X-Git-Url: http://www.git.cypherpunks.ru/?a=blobdiff_plain;f=setup.py;h=c36a3735405f5b296e48c0651dfe3782fe6507a1;hb=1a1b425884f791f8a2a2b99dfe717f09ae274200;hp=b2d641d3e6d85fb8e3dcd97b0d7ada535e8974b7;hpb=42198ee69940c96930d81533ecf9cec87d34b27b;p=pyderasn.git diff --git a/setup.py b/setup.py index b2d641d..c36a373 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( 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={ + "utc": ["python-dateutil~=2.8"], + }, )