-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
30 lines (26 loc) · 896 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
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
from os.path import abspath, dirname, join
from dabble import __version__
setup(
name='dabble',
version=__version__,
description='Simple A/B testing framework',
long_description=file(abspath(join(dirname(__file__), 'README.md'))).read(),
license='BSD',
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2.4",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
],
author='Dan Crosta',
author_email='[email protected]',
url='https://github.com/dcrosta/dabble',
keywords='python web abtest split ab a/b test',
packages=find_packages(),
tests_require=['nose'],
test_suite='nose.collector',
)