-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (61 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
69 lines (61 loc) · 1.3 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
[project]
name = "etl-microservices"
version = "1.0.0"
description = "AI-assisted modular ETL platform with microservices architecture"
requires-python = ">=3.9"
license = {text = "MIT"}
dependencies = [
"flask>=3.1.3",
"werkzeug>=3.1.6",
"pyarrow>=14.0",
"pandas>=2.0",
"numpy>=1.24",
"prometheus_client>=0.19",
"requests>=2.31",
"gunicorn>=21.2",
"pyyaml>=6.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"ruff>=0.4",
"xlsxwriter>=3.1",
"openpyxl>=3.1",
]
ai = [
"openai>=1.0",
"streamlit>=1.30",
"plotly>=5.18",
]
benchmark = [
"matplotlib>=3.7",
"plotly>=5.18",
]
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
[tool.ruff]
target-version = "py39"
line-length = 120
exclude = ["templates/"]
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
[tool.coverage.run]
source = ["services", "preparator", "ai_agent"]
omit = [
"tests/*",
"*/run.py",
"services/*/app/routes.py",
"services/*/app/__init__.py",
"preparator/preparator_v4.py",
"ai_agent/llm_provider.py",
]
[tool.coverage.report]
show_missing = true
fail_under = 75