-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
199 lines (171 loc) · 4.21 KB
/
pyproject.toml
File metadata and controls
199 lines (171 loc) · 4.21 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
[build-system]
requires = [
"hatchling",
"hatch-cpp<0.3",
"hatch-js",
"pybind11",
]
build-backend = "hatchling.build"
[project]
name = "python-template-cppjswasm"
authors = [
{name = "Python Project Template Authors", email = "3105306+timkpaine@users.noreply.github.com"},
]
description = "A C++-JavaScript-Python project template"
readme = "README.md"
license = { text = "Apache-2.0" }
version = "0.1.0"
requires-python = ">=3.10"
keywords = []
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: C++",
"Programming Language :: Python",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = []
[project.optional-dependencies]
develop = [
"build",
"bump-my-version",
"check-dist",
"cibuildwheel",
"codespell",
"hatch-cpp<0.3",
"hatch-js",
"hatchling",
"pybind11",
"mdformat",
"mdformat-tables>=1",
"pytest",
"pytest-cov",
"ruff",
"twine",
"ty",
"uv",
"wheel",
]
[project.scripts]
[project.urls]
Repository = "https://github.com/python-project-templates/python-template-cppjswasm"
Homepage = "https://github.com/python-project-templates/python-template-cppjswasm"
[tool.bumpversion]
current_version = "0.1.0"
commit = true
tag = true
commit_args = "-s"
[[tool.bumpversion.files]]
filename = "python_template_cppjswasm/__init__.py"
search = '__version__ = "{current_version}"'
replace = '__version__ = "{new_version}"'
[[tool.bumpversion.files]]
filename = "pyproject.toml"
search = 'version = "{current_version}"'
replace = 'version = "{new_version}"'
[[tool.bumpversion.files]]
filename = "js/package.json"
search = '"version": "{current_version}"'
replace = '"version": "{new_version}"'
[tool.cibuildwheel]
build = "cp310-*"
test-command = "pytest -vvv {project}/python_template_cppjswasm/tests"
test-extras = "develop"
[tool.cibuildwheel.linux]
environment = {SKIP_HATCH_JS="1"}
skip = "*i686* *musllinux*"
[tool.cibuildwheel.macos]
environment = {MACOSX_DEPLOYMENT_TARGET="11.0", SKIP_HATCH_JS="1"}
archs = "arm64"
[tool.cibuildwheel.windows]
environment = {SKIP_HATCH_JS="1"}
skip = "*win32 *arm_64"
[tool.coverage.run]
branch = true
omit = [
"python_template_cppjswasm/tests/integration/",
]
[tool.coverage.report]
exclude_also = [
"raise NotImplementedError",
"if __name__ == .__main__.:",
"@(abc\\.)?abstractmethod",
]
ignore_errors = true
fail_under = 50
[tool.hatch.build]
artifacts = [
"python_template_cppjswasm/*.dll",
"python_template_cppjswasm/*.dylib",
"python_template_cppjswasm/*.so",
"python_template_cppjswasm/extension",
]
[tool.hatch.build.sources]
src = "/"
[tool.hatch.build.hooks.hatch-js]
path = "js"
build_cmd = "build"
tool = "pnpm"
targets = [
"python_template_cppjswasm/extension/cdn/index.js",
]
[tool.hatch.build.hooks.hatch-cpp]
verbose = true
libraries = [
{name = "python_template_cppjswasm/extension_cpp", sources = ["cpp/python-template-cppjswasm/example.cpp", "cpp/python-template-cppjswasm/extension.cpp"], include-dirs = ["cpp"], binding="pybind11"}
]
[tool.hatch.build.targets.sdist]
packages = [
"python_template_cppjswasm",
"cpp",
"js",
]
[tool.hatch.build.targets.wheel]
packages = [
"python_template_cppjswasm",
]
exclude = [
"js",
"cpp",
]
[tool.pytest.ini_options]
addopts = [
"-vvv",
"--junitxml=junit.xml",
]
testpaths = "python_template_cppjswasm/tests"
[tool.ruff]
line-length = 150
[tool.ruff.lint]
extend-select = [
"I",
]
[tool.ruff.lint.isort]
combine-as-imports = true
default-section = "third-party"
known-first-party = [
"python_template_cppjswasm",
]
section-order = [
"future",
"standard-library",
"third-party",
"first-party",
"local-folder",
]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = [
"F401",
"F403",
]
[tool.yardang]
title = "python template cppjswasm"
root = "README.md"
pages = []
use-autoapi = true