Skip to content

Commit

Permalink
0.2.14
Browse files Browse the repository at this point in the history
  • Loading branch information
brentyi committed Nov 8, 2024
1 parent 4ba52b4 commit d9c7006
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,19 @@ requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.hatch.build]
exclude = ["src/viser/client/.nodeenv", "src/viser/client/node_modules", "**/__pycache__/**"]
# Client build is in the gitignore, but we still want it in the distribution.
ignore-vcs = true

[tool.hatch.build.targets.sdist]
only-include = ["src/viser"]

[tool.hatch.build.targets.wheel]
packages = ["src/viser"]
# .nodeenv can't be copied/moved without causing errors.
exclude = ["src/viser/client/.nodeenv", "src/viser/client/node_modules"]

[project]
name = "viser"
version = "0.2.13"
version = "0.2.14"
description = "3D visualization + Python"
readme = "README.md"
license = { text="MIT" }
Expand Down

0 comments on commit d9c7006

Please sign in to comment.