forked from SeldonIO/alibi-detect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (42 loc) · 1.27 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
from setuptools import find_packages, setup
def readme():
with open("README.md") as f:
return f.read()
# read version file
exec(open("alibi_detect/version.py").read())
extras_require = {"examples": ["seaborn", "tqdm", "nlp"],
"prophet": ["fbprophet>=0.5,<0.7", "holidays==0.9.11"]}
setup(
name="alibi-detect",
author="Seldon Technologies Ltd.",
author_email="[email protected]",
version=__version__, # type: ignore # noqa F821
description="Algorithms for outlier detection, concept drift and metrics.",
long_description=readme(),
long_description_content_type="text/markdown",
url="https://github.com/SeldonIO/alibi-detect",
license="Apache 2.0",
packages=find_packages(),
include_package_data=True,
python_requires=">=3.6",
setup_requires=["pytest-runner"],
install_requires=[
"creme",
"dask[array]",
"matplotlib",
"numpy",
"pandas",
"Pillow",
"opencv-python",
"scipy",
"scikit-image",
"scikit-learn",
"tensorflow>=2",
"tensorflow_probability>=0.8",
"transformers>=2.10.0"
],
tests_require=["pytest", "pytest-cov"],
extras_require=extras_require,
test_suite="tests",
zip_safe=False,
)