-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (30 loc) · 705 Bytes
/
pyproject.toml
File metadata and controls
35 lines (30 loc) · 705 Bytes
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
[project]
name = "pywire-workspace"
version = "0.1.0"
dependencies = [
"pywire[dev]",
"pywire-language-server",
]
[tool.uv]
workspace = { members = [
"pywire",
"pywire-language-server",
"create-pywire-app",
"examples/demo-app",
"examples/demo-components",
"examples/demo-routing"
] }
[tool.uv.sources]
pywire = { workspace = true }
pywire-language-server = { workspace = true }
[tool.ty.environment]
python-version = "3.11"
[tool.ty.src]
exclude = [
"create_pywire_app/templates/*",
"aioquic.*",
"cryptography.*",
"hypercorn.*",
]
[tool.pytest.ini_options]
norecursedirs = ["scratch", ".*", "build", "dist", "CVS", "_darcs", "{arch}", "*.egg", "venv"]