From 7f1358dcb6ba5075c1063c3a18a4da73c8b2201e Mon Sep 17 00:00:00 2001 From: Peter Bittner Date: Sun, 6 Dec 2020 15:06:34 +0100 Subject: [PATCH] Hard-require Python 3.6+, add link to docs on PyPI --- .gitignore | 1 + setup.py | 13 ++++++++++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 6e8fe88..c702437 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ /.idea /.tox /.coverage +/coverage.xml /build /dist diff --git a/setup.py b/setup.py index 49267c4..abff164 100644 --- a/setup.py +++ b/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/', + }, )