Skip to content

Commit

Permalink
Fix the module not fount error
Browse files Browse the repository at this point in the history
  • Loading branch information
arulrajnet committed Sep 8, 2024
1 parent 671dbc5 commit 83c63e7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ tests/.cache/
.venv
.direnv
dist
build
*.egg-info
11 changes: 7 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,16 @@ dependencies = [

[tool.setuptools]
include-package-data = true
packages = [
"attila",
"attila.static",
"attila.templates",
]

[tool.setuptools.package-dir]
"attila" = "."

[tool.setuptools.packages.find]
include = ["static", "templates"]
exclude = ["tests", "dist", "output", "attila.egg-info"]
"attila.static" = "static"
"attila.templates" = "templates"

[tool.setuptools.package-data]
"*" = ["**"]

0 comments on commit 83c63e7

Please sign in to comment.