forked from bogdan-kulynych/trials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 964 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
from setuptools import setup
from pip.req import parse_requirements
parsed_reqs = parse_requirements('requirements.txt', session=False)
requirements = [str(x.req) for x in parsed_reqs]
setup (name='trials',
version='0.1',
description='Tiny Bayesian A/B testing library',
author='Bogdan Kulynych',
author_email='hello@bogdankulynych.me',
url='https://github.com/bogdan-kulynych/trials',
packages=['trials', 'trials.tests'],
license='MIT',
keywords='A/B testing, data analysis, statistics',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
],
install_requires=requirements,
test_suite='nose.collector',
test_requires=[
'nose'
])