Skip to content

Commit e58f95f

Browse files
authored
chore: Update pyproject.toml to include build system configuration and wheel target settings (#5)
1 parent 9e26d31 commit e58f95f

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

python/pyproject.toml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
[build-system]
2+
requires = ["hatchling"]
3+
build-backend = "hatchling.build"
4+
15
[project]
26
name = "valuecell"
37
version = "0.1.0"
@@ -33,3 +37,14 @@ quote-style = "double"
3337
indent-style = "space"
3438
skip-magic-trailing-comma = false
3539
line-ending = "auto"
40+
41+
[tool.hatch.build.targets.wheel]
42+
include = [
43+
"valuecell",
44+
]
45+
exclude = [
46+
"third_party/**",
47+
"**/third_party/**",
48+
"tests/**",
49+
"**/tests/**",
50+
]

0 commit comments

Comments
 (0)