Skip to content

Commit

Permalink
Exclude artifacts from sdist and wheel (#1902)
Browse files Browse the repository at this point in the history
Co-authored-by: Ryan Ly <[email protected]>
  • Loading branch information
penguinpee and rly authored May 22, 2024
1 parent c7ff5ef commit 014b143
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
5 changes: 0 additions & 5 deletions MANIFEST.in

This file was deleted.

12 changes: 12 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,20 @@ source = "vcs"
# src/pynwb/__init__.py to set `__version__` (from _version.py).
version-file = "src/pynwb/_version.py"

[tool.hatch.build.targets.sdist]
exclude = [
".git*",
".codecov.yml",
".readthedocs.yaml",
]

[tool.hatch.build.targets.wheel]
packages = ["src/pynwb"]
exclude = [
".git*",
".codecov.yml",
".readthedocs.yaml",
]

[tool.codespell]
skip = "htmlcov,.git,.mypy_cache,.pytest_cache,.coverage,*.pdf,*.svg,venvs,.tox,nwb-schema,./docs/_build/*,*.ipynb"
Expand Down

0 comments on commit 014b143

Please sign in to comment.