Skip to content

Commit

Permalink
fix setuptools.packages.find
Browse files Browse the repository at this point in the history
from { include = ["aviary"] } to { include = ["aviary*"], exclude = ["tests*"] }
  • Loading branch information
janosh committed Mar 28, 2023
1 parent 0fca9f2 commit 13ca851
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Repo = "https://github.com/CompRhys/aviary"
test = ["pytest", "pytest-cov", "matminer"]

[tool.setuptools.packages]
find = { include = ["aviary"] }
find = { include = ["aviary*"], exclude = ["tests*"] }

[tool.setuptools.package-data]
aviary = ["**/*.json", "**/**/*.json"]
Expand All @@ -74,7 +74,7 @@ target-version = "py38"
line-length = 100
select = [
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"C40", # flake8-comprehensions
"D", # pydocstyle
"E", # pycodestyle
"F", # pyflakes
Expand Down

0 comments on commit 13ca851

Please sign in to comment.