The src package was not being installed, causing ModuleNotFoundError when running ghrel command from outside the project directory.
26 lines
408 B
TOML
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"]
|