mirror of
https://github.com/jazzband/django-analytical.git
synced 2026-03-16 22:20:25 +00:00
Hard-require Python 3.6+, add link to docs on PyPI
This commit is contained in:
parent
5ea7d15868
commit
7f1358dcb6
2 changed files with 11 additions and 3 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -3,6 +3,7 @@
|
|||
/.idea
|
||||
/.tox
|
||||
/.coverage
|
||||
/coverage.xml
|
||||
|
||||
/build
|
||||
/dist
|
||||
|
|
|
|||
13
setup.py
13
setup.py
|
|
@ -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/',
|
||||
},
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue