Update README.md and pyproject.toml

- Add FedEx as a new tracking provider in README.md
- Update version number to 0.1.3 in pyproject.toml
This commit is contained in:
Kumi 2023-08-27 10:38:11 +02:00
parent 01a0d1dc35
commit eb87e38507
Signed by: kumi
GPG key ID: ECBCC9082395383F
2 changed files with 2 additions and 1 deletions

View file

@ -11,6 +11,7 @@ Status information is stored in a SQLite database.
- [KeyDelivery](https://kd100.com) (paid, provides tracking for most carriers)
- [Austrian Post](https://www.post.at)
- [GLS](https://gls-group.eu)
- [FedEx](https://www.fedex.com) (requires an API key, see [FedEx Developer Resource Center](https://www.fedex.com/en-us/developer.html))
More tracking providers can be added easily by subclassing `trackbert.trackers.base.BaseTracker`. This should be relatively self-explanatory if you look at the existing implementations. Pull requests are welcome!

View file

@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project]
name = "trackbert"
version = "0.1.2"
version = "0.1.3"
authors = [
{ name="Kumi Mitterer", email="trackbert@kumi.email" },
]