forked from bruth/django-tracking2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 1.18 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>=1.4,<1.8',
],
'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 :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
}
setup(**kwargs)