Skip to content

Commit e8987f1

Browse files
committed
Fix wheel and source distributions not including the package itself
1 parent ccceec8 commit e8987f1

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
.vscode
21
.idea
32
.mypy_cache
43
.pytest_cache
4+
.ruff_cache
5+
.venv
6+
.vscode
57
__pycache__/
68
dist

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Fixed
11+
12+
- Wheel and source distributions didn't include the package itself
13+
1014
## [3.0.0] - 2025-04-11
1115

1216
### Added

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ docs = [
4040
"mkdocs-material>=9.6.11,<10.0.0",
4141
]
4242

43-
[tool.hatch.build.targets.sdist]
44-
include = ["LICENSE"]
45-
4643
[tool.hatch.build.targets.wheel]
47-
include = ["LICENSE"]
44+
packages = ["todoist_api_python"]
45+
46+
[tool.hatch.build.targets.sdist]
47+
packages = ["todoist_api_python"]
4848

4949
[build-system]
5050
requires = ["hatchling"]

0 commit comments

Comments
 (0)