-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (43 loc) · 1.26 KB
/
pyproject.toml
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
[project]
name = "chipflow_orfs"
description = "Simple packaging of ORFS, stripped down"
authors = [
{name = "Rob Taylor", email = "[email protected]"},
]
dependencies = []
requires-python = "==3.11.*"
readme = "README.md"
license = {text = "MIT"}
dynamic = ["version"]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pytest.ini_options]
norecursedirs = "vendor"
[tool.pdm]
distribution = true
[tool.pdm.version]
source = "scm"
[tool.pdm.scripts]
test.cmd = "pytest"
[tool.pdm.build]
includes=['chipflow-orfs']
source-includes = [
"vendor/orfs/flow/scripts",
"vendor/orfs/flow/util",
"vendor/orfs/flow/platforms",
"vendor/orfs/flow/designs/**/config.mk",
]
[tool.pdm.build.wheel-data]
data = [
{path = "vendor/orfs/flow/scripts/**/*", relative-to = "vendor/orfs"},
{path = "vendor/orfs/flow/util/**/*", relative-to = "vendor/orfs"},
{path = "vendor/orfs/flow/platforms/sky*/**/*", relative-to = "vendor/orfs"},
{path = "vendor/orfs/flow/platforms/gf*/**/*", relative-to = "vendor/orfs"},
{path = "vendor/orfs/flow/platforms/ihp*/**/*", relative-to = "vendor/orfs"},
{path = "vendor/orfs/flow/designs/**/config.mk", relative-to = "vendor/orfs"},
]
[dependency-groups]
test = [
"pytest>=8.3.4",
]