-
Notifications
You must be signed in to change notification settings - Fork 67
/
setup.py
34 lines (32 loc) · 1.19 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from setuptools import setup, find_packages
kwargs = {
'packages': find_packages(
exclude=['tests', '*.tests', '*.tests.*', 'tests.*']),
'include_package_data': True,
'install_requires': [
'django>=3.2',
],
'name': 'django-tracking2',
'version': __import__('tracking').get_version(),
'author': 'Byron Ruth',
'author_email': '[email protected]',
'description': ('django-tracking2 tracks the length of time visitors '
'and registered users spend on your site'),
'license': 'BSD',
'keywords': 'visitor tracking time analytics',
'url': 'https://github.com/bruth/django-tracking2',
'classifiers': [
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
}
setup(**kwargs)