-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (41 loc) · 1.07 KB
/
Copy pathpyproject.toml
File metadata and controls
44 lines (41 loc) · 1.07 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
[project]
name = "analysisposts"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"matplotlib>=3.10.7",
"mcp[cli]>=1.22.0",
"fastmcp>=2.13.0",
"numpy>=2.3.5",
"pandas>=2.2.0",
"pocketflow>=0.0.3",
"requests>=2.32.5",
"zai-sdk>=0.0.4.2",
"pydantic>=2.0.0",
"pyyaml>=6.0.2",
"networkx>=3.3",
"jieba>=0.42.1",
"scikit-learn>=1.5.0",
"streamlit>=1.31.0",
"playwright>=1.52.0",
]
[project.scripts]
analysis = "main:main"
[tool.pytest.ini_options]
addopts = "--basetemp=.pytest_tmp -m \"not live_api and not ui_e2e\""
testpaths = ["tests", "dashboard/tests"]
python_files = ["test_*.py"]
pythonpath = ["."]
markers = [
"unit: unit-level tests for isolated logic",
"integration: integration tests across modules and IO",
"e2e: end-to-end tests through CLI and system flows",
"live_api: tests that call real external APIs",
"ui_e2e: end-to-end tests that drive dashboard UI with a real browser",
]
[dependency-groups]
dev = [
"pytest>=8.0",
]