-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 854 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 854 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 = "freeform-planner"
version = "0.1.0"
description = "Freeform 3D electronics layout planner"
readme = "README.md"
license = "GPL-3.0-or-later"
license-files = ["LICENSE"]
requires-python = ">=3.10"
authors = [
{ name = "lbarbisch" }
]
urls = { Homepage = "https://github.com/lbarbisch/Freeform-Planner" }
keywords = ["electronics", "layout", "3D", "freeform", "KiCAD"]
dependencies = [
"numpy>=2.2.6",
"pytest>=9.0.2",
"ursina>=5.3.0",
]
[project.optional-dependencies]
test = [
"pytest>=7.0.0",
]
[build-system]
requires = ["setuptools>=65.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-ra -q"
python_files = "test_*.py"
[tool.setuptools.packages.find]
exclude = ["models*", "KiCAD_Library*", "models_compressed*"]