-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
183 lines (165 loc) · 4.38 KB
/
Copy pathpyproject.toml
File metadata and controls
183 lines (165 loc) · 4.38 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
[build-system]
requires = ["setuptools==83.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "aidrin"
dynamic = ["version"]
readme = "README.md"
description = "A tool to evaluate the readiness of data for AI"
requires-python = ">=3.10"
license = {file = "LICENSE.txt"}
keywords = ["data readiness for AI", "AI readiness"]
maintainers = [
{name = "Kaveen Hiniduma", email = "hiniduma.1@osu.edu"},
{name = "Suren Byna", email = "byna.1@osu.edu"},
{name = "Jean Luca Bez", email = "jlbez@lbl.gov"}
]
dependencies = [
"flask>=3.1.3",
"celery>=5.5.3",
"redis>=6.4.0",
"flower",
"pandas>=2.2.2",
"numpy>=1.26.4",
"scipy>=1.15.3",
"scikit-learn>=1.5.0",
"matplotlib>=3.10.5",
"seaborn>=0.13.2",
"dython>=0.7.11", # 0.7.11 dropped pkg_resources, removed in setuptools>=82
"shap>=0.48.0",
"numba>=0.61",
"h5py>=3.14.0",
"tables>=3.10.0",
"openpyxl>=3.1.5",
"pgeocode>=0.5.0",
"pyyaml>=6.0",
"pyarrow>=15.0.0",
]
[project.urls]
Source = "https://github.com/idtlab/AIDRIN"
[project.optional-dependencies]
# Legacy extras kept for backward compatibility with pip users.
# Prefer dependency groups below when using uv.
globus = [
"globus-compute-sdk>=2.3.0",
"globus-sdk>=3.20.0",
]
telemetry = [
"opentelemetry-api>=1.20",
"opentelemetry-sdk>=1.20",
"opentelemetry-instrumentation-flask>=0.41b0",
"opentelemetry-exporter-otlp>=1.20",
]
llm = [
"openai>=1.6.0",
]
mcp = [
"mcp>=1.0,<2.0.0",
"openai>=1.6.0",
"langchain>=0.3.0",
"langchain-openai>=0.3.0",
"langchain-community>=0.3.0",
"langchain-text-splitters>=0.3.0",
"faiss-cpu>=1.7.0",
"python-dotenv>=1.0.0",
"pymupdf>=1.24.0",
]
agentic = [
"openai>=1.6.0",
"langchain>=0.3.0",
"langchain-openai>=0.3.0",
"langchain-community>=0.3.0",
"langchain-text-splitters>=0.3.0",
"faiss-cpu>=1.7.0",
"numpy>=1.26.4",
"pandas>=2.0.0",
"pyyaml>=6.0",
"python-dotenv>=1.0.0",
"pymupdf>=1.24.0",
]
dev = [
"pytest>=7.0",
"pytest-flask",
"flake8>=6.0",
"pytest-cov>=4.0",
]
docs = [
"sphinx==8.1.3",
"sphinx-rtd-theme==3.1.0",
"sphinxemoji",
"breathe",
]
# ---------------------------------------------------------------------------
# uv run shortcuts
# ---------------------------------------------------------------------------
# Start the development web server:
# uv run flask --app 'web:create_app()' run --debug
#
# Start the Celery worker:
# uv run celery -A worker.make_celery worker --loglevel=info
#
# Start Celery beat (scheduled tasks):
# uv run celery -A worker.make_celery beat --loglevel=info
[project.scripts]
aidrin = "aidrin.headless.cli:main"
aidrin-mcp = "aidrin.mcp.server:main"
[tool.setuptools.packages.find]
include = ["aidrin*"]
[tool.setuptools.package-data]
"aidrin.agentic" = []
[tool.setuptools.dynamic]
version = {attr = "aidrin._version.__version__"}
# ---------------------------------------------------------------------------
# uv
# ---------------------------------------------------------------------------
[dependency-groups]
dev = [
"pytest>=7.0",
"pytest-flask",
"flake8>=6.0",
"pytest-cov>=4.0",
]
docs = [
"sphinx==8.1.3",
"sphinx-rtd-theme==3.1.0",
"sphinxemoji",
"breathe",
]
agentic = [
"openai>=1.6.0",
"langchain>=0.3.0",
"langchain-openai>=0.3.0",
"langchain-community>=0.3.0",
"langchain-text-splitters>=0.3.0",
"faiss-cpu>=1.7.0",
"numpy>=1.26.4",
"pandas>=2.0.0",
"pyyaml>=6.0",
"python-dotenv>=1.0.0",
"pymupdf>=1.24.0",
]
mcp = [
"mcp>=1.0,<2.0.0",
"openai>=1.6.0",
"langchain>=0.3.0",
"langchain-openai>=0.3.0",
"langchain-community>=0.3.0",
"langchain-text-splitters>=0.3.0",
"faiss-cpu>=1.7.0",
"python-dotenv>=1.0.0",
"pymupdf>=1.24.0",
]
# ---------------------------------------------------------------------------
# Pytest
# ---------------------------------------------------------------------------
[tool.pytest.ini_options]
filterwarnings = [
# dateutil uses deprecated utcfromtimestamp — upstream issue
"ignore:datetime.datetime.utcfromtimestamp:DeprecationWarning",
]
# ---------------------------------------------------------------------------
# Coverage
# ---------------------------------------------------------------------------
[tool.coverage.run]
branch = true
source = ["aidrin", "web", "worker"]