Skip to content

Commit

Permalink
fix: entry point dir rename
Browse files Browse the repository at this point in the history
  • Loading branch information
chamanbravo committed Jan 12, 2025
1 parent d1d04d5 commit 362dcac
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ Homepage = "https://github.com/sandbox-pokhara/disk-cleanup"
Issues = "https://github.com/sandbox-pokhara/disk-cleanup/issues"

[project.scripts]
disk-cleanup = "disk-cleanup.__main__:main"
disk-cleanup = "disk_cleanup.__main__:main"

[tool.setuptools]
include-package-data = true

[tool.setuptools.package-dir]
"disk-cleanup" = "disk-cleanup"
"disk_cleanup" = "disk_cleanup"

[tool.setuptools.dynamic]
version = { attr = "disk-cleanup.__version__" }
version = { attr = "disk_cleanup.__version__" }
dependencies = { file = "requirements.txt" }

[tool.isort]
Expand All @@ -40,5 +40,5 @@ line-length = 79
preview = true

[tool.pyright]
include = ["disk-cleanup", "test.py"]
include = ["disk_cleanup", "test.py"]
typeCheckingMode = "strict"

0 comments on commit 362dcac

Please sign in to comment.