-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (43 loc) · 1.52 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
from distutils.core import setup, Command
import django_crazyegg
class TestCommand(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
import os
os.environ['DJANGO_SETTINGS_MODULE'] = 'django_crazyegg.tests.settings'
from django_crazyegg.tests.utils import run_tests
run_tests()
setup(
name = 'django-crazyegg',
version = django_crazyegg.__version__,
license = django_crazyegg.__license__,
description = 'Crazy Egg heatmaps for Django projects',
long_description = django_crazyegg.__doc__,
author = django_crazyegg.__author__,
author_email = django_crazyegg.__email__,
packages = [
'django_crazyegg',
'django_crazyegg.templatetags',
'django_crazyegg.tests',
],
keywords = ['django', 'heatmap', 'crazy egg'],
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',
'Topic :: Software Development :: Libraries :: Python Modules',
],
platforms = ['any'],
url = 'https://github.com/jcassee/django-crazyegg',
download_url = 'https://github.com/jcassee/django-crazyegg/archives/master',
cmdclass = {'test': TestCommand},
)