-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (68 loc) · 1.73 KB
/
Copy pathpyproject.toml
File metadata and controls
80 lines (68 loc) · 1.73 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[build-system]
requires = ["hatchling>=1.26.2", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "semiwrap"
dynamic = ["version"]
description = "Semi-automated tool to wrap C++ code for use by python"
readme = "README.md"
requires-python = ">=3.8"
license = "BSD-3-Clause"
license-files = ["LICENSE.txt", "LICENSE-pybind11.txt"]
authors = [
{name = "Dustin Spicuzza", email = "robotpy@googlegroups.com"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development",
]
dependencies = [
"pkgconf",
"sphinxify >= 0.7.3",
"validobj ~= 1.3.0",
"cxxheaderparser[pcpp] ~= 2.0",
"packaging",
"tomli",
"tomli_w",
"toposort",
"dictdiffer",
"ruamel.yaml ~= 0.18.16",
"typing-extensions",
"pyyaml >= 5.1",
"pybind11-stubgen ~= 2.5.1",
"pybind11 ~= 3.0.2",
]
[project.optional-dependencies]
typecheck = [
"black == 25.1.0",
"hatchling",
"mypy",
"types-PyYAML",
"types-toposort",
]
[project.entry-points.hatch]
semiwrap = "semiwrap.hooks"
[project.entry-points.pkg_config]
semiwrap = "semiwrap"
[project.scripts]
semiwrap = "semiwrap.tool.__main__:main"
[project.urls]
"Source code" = "https://github.com/robotpy/semiwrap"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.sdist.hooks.vcs]
version-file = "src/semiwrap/version.py"
[tool.hatch.build.targets.sdist]
packages = ["src/semiwrap"]
[tool.black]
target-version = ["py38"]
[tool.mypy]
python_version = "3.13"
check_untyped_defs = true
mypy_path = "typings"
[[tool.mypy.overrides]]
module = "sphinxify"
follow_untyped_imports = true