forked from bruth/django-tracking2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 991 Bytes
/
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
import sys
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.7',
],
'name': 'django-tracking2',
'version': __import__('tracking').get_version(),
'author': 'Byron Ruth',
'author_email': 'b@devel.io',
'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',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
}
setup(**kwargs)