forked from evidentlyai/evidently
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
111 lines (104 loc) · 3.03 KB
/
Copy pathsetup.py
File metadata and controls
111 lines (104 loc) · 3.03 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
#!/usr/bin/env python
# coding: utf-8
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
from pathlib import Path
from setuptools import setup
ui_build_assets = [
"nbextension/static/*.*js*",
"nbextension/static/*.*woff2*",
"legacy/ui/assets/*",
"legacy/ui/assets/static/css/*",
"legacy/ui/assets/static/js/*",
"legacy/ui/assets/static/img/*",
"ui/service/assets/*",
"ui/service/assets/static/css/*",
"ui/service/assets/static/js/*",
"ui/service/assets/static/img/*",
]
package_data = {
"evidently": ui_build_assets,
}
setup_args = dict(
package_data=package_data,
author_email="emeli.dral@gmail.com",
long_description=(Path(__file__).parent / "README.md").read_text("utf8"),
long_description_content_type="text/markdown",
include_package_data=True,
install_requires=[
"plotly>=5.10.0,<6",
"statsmodels>=0.12.2",
"scikit-learn>=1.1.1",
"pandas[parquet]>=1.3.5",
"numpy>=1.22.0",
"nltk>=3.6.7",
"scipy>=1.10.0",
"requests>=2.32.0",
"PyYAML>=5.4",
"pydantic>=1.10.16",
"litestar>=2.8.3",
"typing-inspect>=0.9.0",
"uvicorn[standard]>=0.22.0",
"watchdog>=3.0.0",
"typer>=0.3",
"rich>=13",
"iterative-telemetry>=0.0.5",
"dynaconf>=3.2.4",
"certifi>=2024.7.4",
"urllib3>=1.26.19",
"fsspec>=2024.6.1",
"ujson>=5.4.0",
"deprecation>=2.1.0",
"uuid6>=2024.7.10",
"cryptography>=43.0.1",
],
extras_require={
"dev": [
"pip-audit>=2.7.2",
"wheel==0.38.1",
"setuptools==65.5.1; python_version < '3.12'",
"setuptools==68.2.2; python_version >= '3.12'",
"jupyter==1.0.0",
"mypy==1.1.1",
"pandas-stubs>=1.3.5",
"pytest==7.4.4",
"tracely==0.2.9",
"types-PyYAML==6.0.1",
"types-requests==2.26.0",
"types-dataclasses==0.6",
"types-python-dateutil==2.8.19",
"types-ujson>=5.4.0",
"pillow>=11.3.0",
"httpx==0.27.0",
"ruff==0.3.7",
"pre-commit==3.5.0",
"pytest-asyncio==0.23.7",
"pytest-mock==3.14.0",
],
"llm": [
"openai>=1.16.2",
"evaluate>=0.4.1",
"transformers[torch]>=4.39.3",
"sentence-transformers>=2.7.0",
"sqlvalidator>=0.0.20",
"litellm>=1.74.3",
"llama-index>=0.10",
"faiss-cpu>=1.8.0",
],
"spark": ["pyspark>=3.4.0,<4"],
"fsspec": [
"s3fs>=2024.9.0",
"gcsfs>=2024.9.0",
# dependencies from fsspec[full]
],
"s3": [
"s3fs>=2024.9.0",
],
"gcs": [
"gcsfs>=2024.9.0",
],
},
entry_points={"console_scripts": ["evidently=evidently.cli:app"]},
)
if __name__ == "__main__":
setup(**setup_args)