-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (62 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
66 lines (62 loc) · 1.39 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 = "mmm-framework"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "Matthew Reda", email = "m.reda94@gmail.com" }
]
requires-python = ">=3.12"
dependencies = [
"arq>=0.25.0",
"cloudpickle>=3.1.2",
"fastapi>=0.124.2",
"httpx>=0.28.1",
"loguru>=0.7.3",
"numba>=0.63.1",
"numpy>=2.3.5",
"numpyro>=0.19.0",
"nutpie>=0.16.4",
"pandas>=2.3.3",
"plotly>=6.5.0",
"pydantic>=2.12.5",
"pydantic-settings>=2.12.0",
"pymc>=5.26.1",
"pytest-xdist>=3.8.0",
"python-multipart>=0.0.20",
"redis>=7.1.0",
"slowapi>=0.1.9",
"statsmodels>=0.14.0",
"uvicorn>=0.38.0",
"openpyxl>=3.1.0",
"langgraph>=0.2.14",
"langgraph-checkpoint-sqlite>=2.0.0",
"langchain-core>=0.2.33",
"langchain-google-genai>=1.0.8",
"langchain-anthropic>=0.1.20",
"langchain-openai>=0.1.21",
"rich>=13.0.0",
"langchain-google-vertexai>=2.0.0",
]
[dependency-groups]
dev = [
"ipykernel>=7.1.0",
"ipywidgets>=8.1.8",
"mmm-framework",
"networkx>=3.0",
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
]
app = [
"plotly>=6.5.0",
"streamlit>=1.52.1",
]
docs = [
"sphinx>=7.0,<8.0",
"sphinx-rtd-theme>=2.0",
"sphinx-autodoc-typehints>=2.0",
"sphinx-copybutton>=0.5",
"myst-parser>=3.0",
]
[tool.uv.sources]
mmm-framework = { workspace = true }