forked from LUKKIEN/django-google-tools
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
30 lines (28 loc) · 970 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
from setuptools import setup, find_packages
setup(
name='django-google-tools',
version='1.1.0',
description='Django app for managing Google Analytics and Site Verification codes.',
keywords='django, analytics, google analytics, verification code, site verification',
author='Orne Brocaar, Camilo Nova',
author_email='[email protected]',
url='http://github.com/camilonova/django-google-tools',
license='MIT',
include_package_data=True,
packages=find_packages(
exclude=[
'googletools.tests',
]
),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
zip_safe=False,
)