forked from clintecker/django-google-analytics
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 979 Bytes
/
Copy pathsetup.py
File metadata and controls
21 lines (20 loc) · 979 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from distutils.core import setup
setup(name='google_analytics',
version='0.2',
description='A simple Django application to integrate Google Analytics into your projects',
author='Clint Ecker',
author_email='me@clintecker.com',
url='http://github.com/clintecker/django-google-analytics/tree/master',
packages=['google_analytics',
'google_analytics.templatetags',
'google_analytics.tests'],
package_data={'google_analytics': ['templates/google_analytics/*.html',
'fixtures/*.json']},
classifiers=['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'],
)