Update pyproject.toml and README.md to reflect new conditions.

This commit is contained in:
Pim Nelissen
2026-02-13 15:02:53 +01:00
parent ac8c38592d
commit 845f006cd3
2 changed files with 12 additions and 0 deletions

View File

@ -31,6 +31,14 @@ With the virtual environment activated, run:
pip install -e .[dev] pip install -e .[dev]
``` ```
## Running example landscape
The example landscape can be generated using the command-line interface. Still in the virtual environment, run
```
pgrad --test --loglevel DEBUG
```
## Tests ## Tests
Tests can be run with `pytest` from the root directory of the repository. With the virtual environment activated, run: Tests can be run with `pytest` from the root directory of the repository. With the virtual environment activated, run:

View File

@ -7,6 +7,7 @@ where = ["src"]
[tool.setuptools.package-data] [tool.setuptools.package-data]
"pg_rad.data" = ["*.csv"] "pg_rad.data" = ["*.csv"]
"pg_rad.configs" = ["*.yml"]
[project] [project]
name = "pg-rad" name = "pg-rad"
@ -26,6 +27,9 @@ dependencies = [
license = "MIT" license = "MIT"
license-files = ["LICEN[CS]E*"] license-files = ["LICEN[CS]E*"]
[project.scripts]
pgrad = "pg_rad.main:main"
[project.urls] [project.urls]
Homepage = "https://github.com/pim-n/pg-rad" Homepage = "https://github.com/pim-n/pg-rad"
Issues = "https://github.com/pim-n/pg-rad/issues" Issues = "https://github.com/pim-n/pg-rad/issues"