-
Notifications
You must be signed in to change notification settings - Fork 86
/
setup.py
46 lines (43 loc) · 1.5 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
import codecs # to use a consistent encoding
from os import path
from setuptools import setup, find_packages # prefer setuptools over distutils
# Get the long description from the README file
PATH = path.abspath(path.dirname(__file__))
with codecs.open(path.join(PATH, 'README.rst'), encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()
setup(
name='django-experiments',
version='1.2.1',
description='Python Django AB Testing Framework',
long_description=LONG_DESCRIPTION,
author='Mixcloud',
author_email='[email protected]',
url='https://github.com/mixcloud/django-experiments',
packages=find_packages(exclude=["example_project"]),
include_package_data=True,
license='MIT',
install_requires=[
'django>=1.11',
'django-modeldict-yplan>=1.5.0',
'redis>=2.4.9',
],
tests_require=[
'mock>=1.0.1',
'tox>=2.3.1',
],
test_suite="testrunner.runtests",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Framework :: Django',
'Framework :: Django :: 1.11',
],
)