Files
TimeTracker/pyproject.toml
2026-03-10 05:42:27 +03:00

38 lines
993 B
TOML

[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "citrus_time_tracker"
version = "1.0.0"
description = "Time tracking tool with YouTrack integration"
readme = "README.md"
authors = [{name = "Mikan"}]
license = {text = "MIT"}
requires-python = ">=3.8"
dependencies = [
"pynput>=1.7.6",
"pywin32>=306; sys_platform == 'win32'",
"psutil>=5.9.0; sys_platform == 'win32'",
"pydantic>=2.0.0",
"python-dotenv>=1.0.0", # <-- новое
"httpx>=0.25.0", # для асинхронных/синхронных HTTP-запросов
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-mock>=3.10.0",
]
[project.scripts]
citrus_time_tracker = "citrus_time_tracker.__main__:main"
[tool.setuptools.packages.find]
where = ["src"]
include = ["citrus_time_tracker*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]