diff --git a/README.md b/README.md index b34a55f..7aa0b21 100644 --- a/README.md +++ b/README.md @@ -8,9 +8,18 @@ ![Test program/library](https://gitfub.space/Jmaa/package-tracking/actions/workflows/python-test.yml/badge.svg) -Sample package tracking website. +Small alternative frontend for tracking packages and parcels. -Use the [Parcels API](https://parcelsapp.com/). +Use the excellent [Parcels App API](https://parcelsapp.com/), and thus requires +an API key. + +This was written specifically for embedding as an iframe into homepage +applications like [Homepage](https://gethomepage.dev/) or [Dashy](https://dashy.to/). + +Once run, it exposes the following endpoints: + +- `/`: Base view, including a form for adding new parcels. +- `/noninteraction`: Smaller view for embedding as iframe. ## Dependencies diff --git a/setup.py b/setup.py index e7e3048..4becf64 100644 --- a/setup.py +++ b/setup.py @@ -13,13 +13,22 @@ PACKAGE_NAME = 'package_tracking' PACKAGE_DESCRIPTION = """ # Package-tracking. -Sample package tracking website. +Small alternative frontend for tracking packages and parcels. -Use the [Parcels API](https://parcelsapp.com/). +Use the excellent [Parcels App API](https://parcelsapp.com/), and thus requires +an API key. + +This was written specifically for embedding as an iframe into homepage +applications like [Homepage](https://gethomepage.dev/) or [Dashy](https://dashy.to/). + +Once run, it exposes the following endpoints: + +- `/`: Base view, including a form for adding new parcels. +- `/noninteraction`: Smaller view for embedding as iframe. """.strip() PACKAGE_DESCRIPTION_SHORT = """ -Sample package tracking website.""".strip() +Small alternative frontend for tracking packages and parcels.""".strip() def parse_version_file(text: str) -> str: