Fix: Add setuptools package discovery config

The src package was not being installed, causing ModuleNotFoundError
when running ghrel command from outside the project directory.
This commit is contained in:
2026-07-28 12:07:38 +02:00
parent 959d068474
commit 7aeecc1e15
+3
View File
@@ -12,6 +12,9 @@ dependencies = [
[project.scripts]
ghrel = "src.cli:main"
[tool.setuptools.packages.find]
include = ["src*"]
[project.optional-dependencies]
test = [
"pytest",