-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
44 lines (42 loc) · 1.25 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
"""
Bayesian AB Test
-----------------
Calculates Bayesian Probabilty that A - B > x
"""
from setuptools import setup
setup(
name='bayesian_ab_test',
version='0.0.3',
url='http://github.com/eriktaubeneck/bayesian_ab_test',
license='MIT',
author='Erik Taubeneck',
author_email='[email protected]',
description='Calculates Bayesian Probability that A - B > x',
long_description=__doc__,
py_modules=['ab_test', 'cli'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'docopt >= 0.6.0',
'numpy >= 1.10.0'
],
entry_points="""
[console_scripts]
bayesian_ab_test = cli:main
""",
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Plugins',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English ',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)