forked from abtesting10academy/abtest-mlops
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (24 loc) · 819 Bytes
/
setup.py
File metadata and controls
29 lines (24 loc) · 819 Bytes
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
#!/usr/bin/env python
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
requirements = ['pytest==7.1.1']
test_requirements = ['pandas', 'matplotlib', 'sklearn',
'streamlit', 'sql', 'pytest>=3', ]
setup(
author="",
email="",
python_requires='>=3.6',
description="AB hypothesis testing",
install_requires=requirements,
long_description=readme,
include_package_data=True,
keywords='hypothesis_testing, Data_Preprocessing, unit_testing, pytest',
name='AB_hypothesis_testing',
packages=find_packages(include=['src', 'src.*']),
test_suite='Tests',
tests_require=test_requirements,
url='https://github.com/abtesting10academy/abtest-mlops',
version='0.1.0',
zip_safe=False,
)