Skip to content

Commit

Permalink
fix sitedata directory structure when building
Browse files Browse the repository at this point in the history
  • Loading branch information
R. Broderick committed Apr 27, 2024
1 parent 80f27d8 commit 34e83d9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=67.0"]
requires = ["setuptools>=67.0", "wheel"]

[project]
authors = [{"name" = "R.Broderick"}]
description = "Pre-commit hooks for Python projects."
version = "1.0.0"
version = "1.0.1"
license = {"file" = "LICENSE"}
name = "precommithooks"
readme = {file = "README.md", content-type = "text/markdown"}
Expand Down Expand Up @@ -51,6 +51,9 @@ docs = [
"sphinx-pyproject"
]

[project.scripts]
check_names = "precommithooks:main"

[tool.dapperdata]
exclude_paths = [".venv", ".mypy_cache", ".git", ".vscode"]

Expand Down Expand Up @@ -237,8 +240,9 @@ readme = {file = ["README.md"]}
[tool.setuptools.package-data]
library = ["py.typed"]

[tool.setuptools.packages]
find = {}
[tool.setuptools.packages.find]
exclude = ["docs*", "tests*"]
where = ["src"]

[tool.sphinx-pyproject]
# -- General configuration ---------------------------------------------------
Expand Down
Empty file added src/precommithooks/py.typed
Empty file.

0 comments on commit 34e83d9

Please sign in to comment.