Skip to content

Commit

Permalink
another tweak on automatic package finding
Browse files Browse the repository at this point in the history
  • Loading branch information
sbillinge committed Apr 25, 2024
1 parent fed981f commit ed75eca
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
@@ -48,9 +48,9 @@ dirty_template = "{tag}"

[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
include = ["*"] # package names should match these glob patterns (["*"] by default)
include = ["regolith*"] # package names should match these glob patterns (["*"] by default)
exclude = [] # exclude packages matching these glob patterns (empty by default)
namespaces = false # to disable scanning PEP 420 namespaces (true by default)
namespaces = true # to disable scanning PEP 420 namespaces (true by default)

[tool.setuptools.package-data]
regolith = ["templates/*",

0 comments on commit ed75eca

Please sign in to comment.