Skip to content

Commit

Permalink
Fix missing files in source dist (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
rly authored Sep 26, 2024
1 parent e3c7a54 commit b9fceac
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog for ndx-pose

## ndx-pose 0.2.1 (September 26, 2024)

### Bug fixes
- Fixed missing files in source distribution (`.tar.gz`). @rly (#35)

## ndx-pose 0.2.0 (September 26, 2024)

### Major changes
Expand Down
12 changes: 9 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "ndx-pose"
version = "0.2.0"
version = "0.2.1"
authors = [
{ name="Ryan Ly", email="[email protected]" },
{ name="Ben Dichter", email="[email protected]" },
Expand Down Expand Up @@ -67,14 +67,20 @@ packages = [
[tool.hatch.build.targets.wheel.sources]
"spec" = "ndx_pose/spec"

# The source distribution includes everything in the package except for the `src/matnwb` directory and
# git and github-related files.
# The source distribution includes everything in the package,
# except for the `src/matnwb` directory, git and github-related files,
# auto-generated docs, and build artifacts.
[tool.hatch.build.targets.sdist]
ignore-vcs = true
exclude = [
".git*",
"src/matnwb",
"docs/source/_format_auto_docs",
"build",
"*.egg-info/",
]


[tool.pytest.ini_options]
# uncomment below to run pytest with code coverage reporting. NOTE: breakpoints may not work
# addopts = "--cov --cov-report html"
Expand Down

0 comments on commit b9fceac

Please sign in to comment.