setup.py: don't require a specific Django version, so 1.1 and 2.x works

also add py37 to pypi metadata.
This commit is contained in:
Thomas Waldmann 2018-09-30 23:04:28 +02:00
parent 04c7d35e0e
commit fb0967c0ec

View File

@ -48,7 +48,7 @@ setup(
install_requires=[
'dnspython',
'netaddr',
'django~=1.11.0',
'django',
'django-bootstrap-form',
'django-registration-redux',
'django-extensions',
@ -68,6 +68,7 @@ setup(
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: Name Service (DNS)',
],
)