-
Notifications
You must be signed in to change notification settings - Fork 16
/
pyproject.toml
79 lines (69 loc) · 1.98 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
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
[build-system]
requires = ["hatchling>=1.26.2", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "robotpy-build"
dynamic = ["version"]
description = "Build tool for RobotPy projects"
readme = "README.md"
requires-python = ">=3.8"
license = "BSD-3-Clause"
license-files = ["LICENSE.txt", "robotpy_build/pybind11/LICENSE"]
authors = [
{name = "Dustin Spicuzza", email = "[email protected]"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development",
]
dependencies = [
"setuptools >= 45",
"setuptools_scm >= 6.2, < 8",
"sphinxify >= 0.7.3",
"pydantic >= 1.7.0, < 2",
"cxxheaderparser[pcpp] ~= 1.4.1",
"tomli",
"tomli_w",
"toposort",
"typing-extensions",
"pyyaml >= 5.1",
"patch == 1.*",
"pybind11-stubgen ~= 2.5.1",
"delocate; platform_system == 'Darwin'",
"distro; platform_system == 'Linux'",
]
[project.entry-points.robotpybuild]
robotpy-build = "robotpy_build.pkgcfg"
[project.scripts]
robotpy-build = "robotpy_build.tool:main"
[project.urls]
"Source code" = "https://github.com/robotpy/robotpy-build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "robotpy_build/version.py"
[tool.hatch.build.targets.sdist]
packages = ["robotpy_build"]
exclude = [
"/robotpy_build/pybind11"
]
[tool.hatch.build.targets.sdist.force-include]
"./robotpy_build/pybind11/include" = "./robotpy_build/pybind11/include"
[tool.hatch.build.targets.wheel]
packages = ["robotpy_build"]
include = [
"/robotpy_build/pybind11/include",
"/robotpy_build/include",
]
[tool.black]
target-version = ["py38"]
extend-exclude = '''
^/robotpy_build/pybind11
'''