Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
exclude *.yml *.yaml
exclude *.yml
exclude .coveragerc
exclude .git-blame-ignore-revs
exclude example example/* snap snap/*
exclude Makefile
prune example
prune snap
prune .devcontainer
prune .github
exclude .gitignore
exclude .mailmap
exclude codespell.1.include
exclude pyproject-codespell.precommit-toml
7 changes: 7 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,17 @@ requires = ["setuptools>=77", "setuptools_scm[toml]>=6.2, != 8.0.0"]
[tool.setuptools_scm]
write_to = "codespell_lib/_version.py"

[tool.setuptools]
include-package-data = false

[tool.setuptools.packages.find]
include = ["codespell_lib", "codespell_lib.*"]
exclude = [
"dist",
"snap",
"tools",
"example",
Copy link
Copy Markdown
Collaborator

@DimitriPapadopoulos DimitriPapadopoulos Apr 12, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

But then example is not currently included in the sdist or wheel. Why is that?

"codespell_lib.tests*",
]

[tool.setuptools.package-data]
Expand Down
Loading