Better usage

This commit is contained in:
Mikan
2026-03-10 05:42:27 +03:00
parent 4c260b1bad
commit 4b56ec4641
17 changed files with 15 additions and 11 deletions

View File

@@ -3,9 +3,9 @@ requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "work_tracker"
version = "0.1.0"
description = "Personal time tracking tool with YouTrack integration"
name = "citrus_time_tracker"
version = "1.0.0"
description = "Time tracking tool with YouTrack integration"
readme = "README.md"
authors = [{name = "Mikan"}]
license = {text = "MIT"}
@@ -24,9 +24,12 @@ dev = [
"pytest-mock>=3.10.0",
]
[project.scripts]
citrus_time_tracker = "citrus_time_tracker.__main__:main"
[tool.setuptools.packages.find]
where = ["src"]
include = ["time_tracker*"]
include = ["citrus_time_tracker*"]
[tool.pytest.ini_options]
testpaths = ["tests"]