From eb87e3850789efb861dc53734ceb8f68067adfd8 Mon Sep 17 00:00:00 2001 From: Kumi Date: Sun, 27 Aug 2023 10:38:11 +0200 Subject: [PATCH] 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 --- README.md | 1 + pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 62ef3d4..e08bd8e 100644 --- a/README.md +++ b/README.md @@ -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! diff --git a/pyproject.toml b/pyproject.toml index 5896968..c2b9d08 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" }, ]