Skip to content

Commit

Permalink
BLD: exclude dot files from sdist
Browse files Browse the repository at this point in the history
  • Loading branch information
neutrinoceros committed Nov 25, 2024
1 parent 6505bdf commit f0c571d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ baballe = "idefix_cli.__main__:alt_main"
[project.urls]
Homepage = "https://github.com/neutrinoceros/idefix_cli"


[dependency-groups]
test = [
"pytest-check>=2.1.2",
Expand All @@ -46,6 +45,9 @@ typecheck = [
"mypy>=1.11.2",
]

[tool.hatch.build.targets.sdist]
exclude = [".*"] # exclude dot files (.gitignore is still included)

[tool.ruff.lint]
exclude = ["*__init__.py"]
ignore = ["E501", "ISC001"]
Expand Down

0 comments on commit f0c571d

Please sign in to comment.