39 lines
892 B
TOML
39 lines
892 B
TOML
[project]
|
|
name = "git_time_tracking"
|
|
dependencies = [
|
|
"toml~=0.10.2",
|
|
"rich~=13.7.1",
|
|
]
|
|
dynamic = ["version"]
|
|
authors = []
|
|
description = "This is a small frontend, which is supposed to help with time tracking using git."
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
|
|
[project.scripts]
|
|
git_time_tracking = "git_time_tracking.__main__:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling", "hatch-requirements-txt"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build]
|
|
directory = "dist"
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
include = ["git_time_tracking/*.py"]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["git_time_tracking"]
|
|
|
|
[tool.hatch.metadata]
|
|
allow-direct-references = true
|
|
|
|
[tool.hatch.version]
|
|
path = "git_time_tracking/__about__.py"
|