track4px/pyproject.toml
Kumi 5a05062267
feat: fork from DPD to 4PX tracking
Renamed project from DPDTrack to Track4PX and updated all relevant files, including README, LICENSE, and pyproject.toml. Removed DPD specific code and implemented 4PX tracking API.

Rationale:
- Shifts the focus of the package from DPD to 4PX data.
- Streamlines tracking functionality for 4PX users.

Consequences:
- Users need to update their imports and installation process.
- Changes in package semantics and functionality.
2024-09-06 08:24:27 +02:00

25 lines
No EOL
651 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "track4px"
version = "0.1.0"
authors = [
{ name="Kumi Mitterer", email="dpdtrack@kumi.email" },
]
description = "Simple Python wrapper to fetch parcel tracking data from 4PX"
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 = [
]
[project.urls]
"Homepage" = "https://git.private.coffee/kumi/track4px"
"Bug Tracker" = "https://git.private.coffee/kumi/track4px/issues"