-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (57 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
64 lines (57 loc) · 1.29 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
[tool.poetry]
name = "kicad-python"
version = "0.4.0.dev0"
description = "KiCad API Python Bindings"
authors = ["The KiCad Development Team"]
homepage = "https://kicad.org/"
repository = "https://gitlab.com/kicad/code/kicad-python"
license = "MIT"
readme = "README.md"
packages = [
{ include = "kipy" },
]
include = ["**/kipy/**/*.py", "**/kipy/**/*.pyi"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)"
]
[tool.poetry.dependencies]
python = "<4.0,>=3.9"
protobuf = "^5.29"
pynng = "^0.8.0"
deprecated = "^1.2"
[tool.poetry.group.dev.dependencies]
nox = "^2025.2.9"
ruff = "^0.9"
protoletariat = "^3.3"
mypy-protobuf = "^3.6"
poetry-plugin-export = "^1.8"
mypy = "^1.14.0"
setuptools = "^75.6.0"
sphinx = "7.4"
furo = "^2024.8.6"
pytest = "^8.3.4"
[build-system]
requires = [
"poetry-core",
"protoletariat == 3.3.*",
"setuptools",
"mypy-protobuf == 3.6.*"
]
build-backend = "poetry.core.masonry.api"
[tool.poetry.build]
generate-setup-file = true
script = "build.py"
[tool.ruff]
exclude = [
"kipy/proto"
]
[tool.mypy]
exclude = [
"kipy/proto"
]
[[tool.mypy.overrides]]
module = "pynng"
ignore_missing_imports = true