trackbert/pyproject.toml
Kumi 44fe6a28a2
feat: Add DHL configuration and implementation
This commit adds the DHL configuration and implementation to the project.

- Added DHL configuration to the config file.
- Updated the project version to 0.2.1 in the pyproject.toml file.
- Created a new file for the DHL tracker implementation.
- Implemented the DHL tracker functionality to get shipment events.
- Added DHL to the list of supported carriers.
2023-08-29 10:47:52 +02:00

36 lines
No EOL
825 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "trackbert"
version = "0.2.1"
authors = [
{ name="Kumi Mitterer", email="trackbert@kumi.email" },
]
description = "Python application tracking your shipments"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"pykeydelivery",
"postat",
"glsapi",
"fedextrack",
"dhltrack",
"sqlalchemy",
"alembic",
"python-dateutil",
]
[project.urls]
"Homepage" = "https://kumig.it/kumitterer/trackbert"
"Bug Tracker" = "https://kumig.it/kumitterer/trackbert/issues"
[project.scripts]
trackbert = "trackbert.__main__:main"