forked from kelvan/django-piwik
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
26 lines (24 loc) · 864 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
import os
from setuptools import setup, find_packages
setup(
name='django-piwik',
version='0.3',
description='A simple app to add the Piwik JS tracking code to your template.',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
author='Raphael Jasjukaitis, Jørn Åne de Jong',
author_email='webmaster@raphaa.de, jorn.dejong@uninett.no',
url='https://github.com/apapillon/django-piwik',
license='BSD License',
platforms=['OS Independent'],
packages=find_packages(),
classifiers=[
'Environment :: Web Environment',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
zip_safe=False,
include_package_data=True,
install_requires=['Django'],
)