Kumi
fd297a612f
- Introduced support and PyPI version badges in README to enhance visibility and provide quick access to the package version and support options. - Updated URLs in both README and pyproject.toml, shifting the project's homepage, bug tracker, and source code references to the new git.private.coffee platform. This move supports a more centralized and private management of the project infrastructure. The inclusion of badges in the README not only improves the aesthetic appeal but also offers essential information at a glance, encouraging user engagement. Transitioning to private.coffee for project URLs signifies a strategic choice towards a more controlled and secure environment for development and community interaction.
39 lines
No EOL
938 B
TOML
39 lines
No EOL
938 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "trackbert"
|
|
version = "0.3.0-dev"
|
|
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 >= 0.9.1",
|
|
"postat",
|
|
"glsapi",
|
|
"fedextrack",
|
|
"dhltrack",
|
|
"dpdtrack",
|
|
"sqlalchemy",
|
|
"alembic",
|
|
"python-dateutil",
|
|
"tabulate",
|
|
]
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://git.private.coffee/kumi/trackbert"
|
|
"Bug Tracker" = "https://git.private.coffee/kumi/trackbert/issues"
|
|
"Source Code" = "https://git.private.coffee/kumi/trackbert"
|
|
|
|
[project.scripts]
|
|
trackbert = "trackbert.__main__:main" |