Hard-require Python 3.6+, add link to docs on PyPI

This commit is contained in:
Peter Bittner 2020-12-06 15:06:34 +01:00
parent 5ea7d15868
commit 7f1358dcb6
2 changed files with 11 additions and 3 deletions

1
.gitignore vendored
View file

@ -3,6 +3,7 @@
/.idea
/.tox
/.coverage
/coverage.xml
/build
/dist

View file

@ -22,7 +22,10 @@ setup(
'analytical',
'analytical.templatetags',
],
keywords=['django', 'analytics'],
keywords=[
'django',
'analytics',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
@ -34,15 +37,19 @@ setup(
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
],
python_requires='>=3.6',
platforms=['any'],
url='https://github.com/jazzband/django-analytical',
download_url='https://github.com/jazzband/django-analytical/archive/master.zip',
project_urls={
'Documentation': 'https://django-analytical.readthedocs.io/',
},
)