Files
github_release_monitor/pyproject.toml
T
ARIA 7aeecc1e15 Fix: Add setuptools package discovery config
The src package was not being installed, causing ModuleNotFoundError
when running ghrel command from outside the project directory.
2026-07-28 12:07:38 +02:00

26 lines
408 B
TOML

[project]
name = "ghrel"
version = "0.1.0"
description = "Track GitHub releases and tags as an RSS feed"
requires-python = ">=3.12"
dependencies = [
"httpx",
"markdown",
"bleach",
]
[project.scripts]
ghrel = "src.cli:main"
[tool.setuptools.packages.find]
include = ["src*"]
[project.optional-dependencies]
test = [
"pytest",
"respx",
]
[tool.pytest.ini_options]
testpaths = ["tests"]