-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (55 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
64 lines (55 loc) · 1.32 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
[project]
name = "expanto"
version = "0.1.0a1"
description = "Experimenter Analytics Tools"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
# Core
"pydantic>=2.10.6",
"pydantic-settings>=2.4.0",
"streamlit==1.49.1",
"sqlalchemy[asyncio]>=2.0.38",
"aiosqlite>=0.21.0",
"jinja2>=3.1.4",
# Data
"scipy>=1.15.1",
"statsmodels>=0.14.4",
"plotly>=6.0.1",
"tabulate>=0.9.0",
# Connectors
"snowflake-connector-python>=3.13.2",
"google-cloud-bigquery[bqstorage,pandas]>=3.31.0",
"db-dtypes>=1.4.2",
"pyarrow<19",
# LLM
"pydantic-ai~=1.1.0",
"pydantic-ai-slim[duckduckgo,tavily]~=1.1.0",
"chromadb>=1.0.5",
"fastapi[standard]>=0.115.9",
# Utilities
"pyyaml>=6.0.2",
"logfire[fastapi,httpx,requests,sqlalchemy]>=4.3.3",
]
[dependency-groups]
dev = [
"mypy>=1.14.1",
"ruff>=0.9.3",
"pytest>=8.3.4",
"pytest-asyncio>=1.0.0",
]
[tool.ruff]
line-length = 108
[tool.ruff.lint]
select = [
# pycodestyle, Pyflakes, pyupgrade, flake8-bugbear, flake8-simplify, isort
"E", "F", "UP", "B", "SIM", "I"
]
[tool.pytest.ini_options]
addopts = "-m 'not integration and not slow'"
markers = [
"slow: mark test as slow",
"integration: mark test as integration test"
]
[tool.mypy]
plugins = ["pydantic.mypy"]