-
Notifications
You must be signed in to change notification settings - Fork 74
/
setup.py
18 lines (17 loc) · 861 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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='[email protected]',
url='http://github.com/clintecker/django-google-analytics/tree/master',
packages=['google_analytics','google_analytics.templatetags',],
package_data={'google_analytics': ['templates/google_analytics/*.html']},
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'],
)