Skip to content

Commit

Permalink
tweak contents of sdist package
Browse files Browse the repository at this point in the history
  • Loading branch information
vertti committed Mar 5, 2025
1 parent 6af6ac3 commit 47c1996
Showing 1 changed file with 22 additions and 4 deletions.
26 changes: 22 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,6 @@ classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License"
]
include = [
"LICENSE",
"daffy/py.typed"
]

dependencies = [
"pandas>=1.5.1,<3.0.0",
Expand All @@ -52,6 +48,28 @@ dev = [
requires = ["hatchling>=1.18.0"]
build-backend = "hatchling.build"

[tool.hatch.build]
include = [
"daffy/**/*.py",
"daffy/py.typed",
"pyproject.toml",
"README.md",
"LICENSE",
"docs/**/*",
"tests/**/*",
]
exclude = [
"mise.toml",
".gitignore",
".github/**/*",
".vscode/**/*",
"**/__pycache__",
"**/*.pyc",
]

[tool.hatch.build.targets.wheel]
packages = ["daffy"]

[tool.coverage.run]
branch = true
source = ["daffy"]
Expand Down

0 comments on commit 47c1996

Please sign in to comment.