-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 955 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
31
32
33
#!/usr/bin/env python
from distutils.core import setup
from setuptools import find_packages
setup(
name='django-user-tracking',
version='0.0.1',
description='A user tracking package focusing on client side user tracking for Django.',
author='Joe',
author_email='[email protected]',
url='https://github.com/joebos/django-user-tracking',
packages=find_packages(),
package_data = {
'': ['*.js', '*.py']
},
include_package_data=True,
keywords = ["analytics", "tracking", "dashboard"],
install_requires = [
'django > 1.4',
'django-rq',
'rq'
],
classifiers = [
"Programming Language :: Python",
"Programming Language :: JavaScript",
"Development Status :: 2 - Alpha",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)