-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
26 lines (24 loc) · 855 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-matomo',
version='0.1.6',
description='A simple app to add the Matomo JS tracking code to your template. Forked from `django-piwik`.',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
author='Mikolaj Buchwald',
author_email='mikolaj.buchwald@gmail.com',
url='https://github.com/mikbuch/django-matomo',
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'],
)