-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 1020 Bytes
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 1020 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
36
37
38
39
40
41
[project]
name = "oocana-python"
version = "0.0.0"
description = ""
authors = [
{name = "l1shen", email = "lishen1635@gmail.com"},
{name = "yleaf", email = "11785335+leavesster@users.noreply.github.com"},
]
requires-python = ">=3.9"
license = {text = "MIT"}
readme = "README.md"
dependencies = [
]
[project.optional-dependencies]
debug = ["debugpy"]
[tool.pdm.scripts]
publish_oocana = { shell = "cd oocana && pdm publish" }
publish_executor = { shell = "cd executor && pdm publish" }
check = { shell = "pdm run pyright ./oocana ./executor" }
build_all = { shell = "(cd oocana && pdm build) && (cd executor && pdm build)" }
test = { shell = "pdm run pytest ./oocana ./executor" }
[tool.pdm.dev-dependencies]
dev = [
"-e oocana @ file:///${PROJECT_ROOT}/oocana",
"-e oocana-python-executor @ file:///${PROJECT_ROOT}/executor",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[dependency-groups]
dev = [
"pyright>=1.1.370",
"pytest>=8.3.2",
"debugpy>=1.8.14",
]