-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (63 loc) · 1.58 KB
/
Copy pathpyproject.toml
File metadata and controls
69 lines (63 loc) · 1.58 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 = "asta-autodiscovery-workspace"
version = "0.2.2"
description = "Asta AutoDiscovery (workspace root)"
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE"]
authors = [
{ name = "Allen Institute for Artificial Intelligence" }
]
requires-python = ">=3.13"
dependencies = []
[dependency-groups]
dev = [
"bcrypt",
"pyright",
"pytest",
"pytest-cov",
"pytest-asyncio",
"matplotlib",
"ruff",
]
[project.optional-dependencies]
docs = [
"mkdocs",
"mkdocs-autorefs",
"mkdocs-material",
"mkdocstrings[python]",
]
[tool.pytest.ini_options]
testpaths = ["packages"]
pythonpath = [
"packages/code_execution/src",
"packages/agents/src",
"packages/autodiscovery/src",
"packages/autodiscovery_modal/src",
"packages/autodiscovery_jobs/src",
]
markers = [
"modal: integration tests that run against Modal",
"adc: tests that require Application Default Credentials",
]
[tool.uv.workspace]
members = [
"packages/code_execution",
"packages/agents",
"packages/autodiscovery",
"packages/autodiscovery_modal",
"packages/autodiscovery_jobs",
"packages/devtools"
]
[tool.uv.sources]
asta-agents = { workspace = true }
asta-autodiscovery = { workspace = true }
asta-autodiscovery-modal = { workspace = true }
asta-autodiscovery-jobs = { workspace = true }
asta-code-execution = { workspace = true }
# Local dev: path override for asta-sandbox (comment out to use PyPI)
#asta-sandbox = { path = "../dv-core-asta-integration/packages/sandbox", editable = true }
[tool.coverage.run]
omit = [
"packages/**/tests/**",
]