-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
61 lines (57 loc) · 2.43 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
52
53
54
55
56
57
58
59
60
61
# -*- coding: utf-8 -*-
"""A/B Testing for Django
django-lean allows you to perform split-test experiments on your users.
In brief, this involves exposing 50% of your users to one implementation
and 50% to another, then comparing the performance of these two groups
with regards to certain metrics.
"""
from distutils.core import setup
description, long_description = __doc__.split('\n\n', 1)
setup(
name='django-lean',
version='0.15',
author='Akoha, Inc.',
author_email='[email protected]',
description=('A framework for performing and analyzing split-test ' +
'experiments in Django applications.'),
long_description=('django-lean aims to be a collection of tools for ' +
'Lean Startups using the Django platform. Currently ' +
'it provides a framework for implementing split-test ' +
'experiments in JavaScript, Python, or Django template ' +
'code along with administrative views for analyzing ' +
'the results of those experiments.'),
license='BSD',
platforms=['any'],
url='http://bitbucket.org/akoha/django-lean/wiki/Home',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
],
packages=[
'django_lean',
'django_lean.experiments',
'django_lean.experiments.management',
'django_lean.experiments.management.commands',
'django_lean.experiments.templatetags',
'django_lean.experiments.tests',
'django_lean.lean_analytics',
'django_lean.lean_retention',
'django_lean.lean_retention.tests',
'django_lean.lean_segments',
'django_lean.lean_segments.management',
'django_lean.lean_segments.management.commands',
],
package_data={
'django_lean.experiments': ['media/experiments/*.js',
'templates/experiments/*.html',
'templates/experiments/include/*.html'],
'django_lean.experiments.tests': ['data/*.json'],
},
install_requires=['django >= 1.0', 'BeautifulSoup', 'mox'],
)