-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·53 lines (46 loc) · 1.49 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
#Setup script for ABvalidator
from __future__ import print_function
from setuptools import setup,find_packages
import codecs
import os
import sys
import re
HERE = os.path.abspath(os.path.dirname(__file__))
def read(*parts):
#Return multiple read calls to different readable objects as a single string.
return codecs.open(os.path.join(HERE, *parts), 'r', encoding='utf-8').read()
LONG_DESCRIPTION = read('README.md')
setup(
name='ABvalidator',
version='0.0.1',
url='https://github.com/ernstmul/abvalidator/',
license='Apache Software License',
author='Ernst Mulders',
install_requires=[
'PyInquirer>=1.0.3',
'colorama>=0.4.1',
'prompt_toolkit==1.0.14',
'Pygments>=2.2.0',
'regex>=2016.11.21',
'scipy>=1.3.1',
'pandas>=0.25.1',
'statsmodels>=0.10.1',
'numpy>=1.17.2',
'scikit-learn>=0.21.3'
],
author_email='[email protected]',
description='A/B experiment and platform validation toolkit',
long_description=LONG_DESCRIPTION,
packages=find_packages(),
include_package_data=True,
platforms='any',
package_data={'ABvalidator': ['data/*.json']},
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering'
],
)