33 lines
836 B
TOML
33 lines
836 B
TOML
[build-system]
|
||
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"
|
||
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", # <-- добавлено для работы с моделями и JSON
|
||
]
|
||
[project.optional-dependencies]
|
||
dev = [
|
||
"pytest>=7.0",
|
||
"pytest-mock>=3.10.0",
|
||
]
|
||
|
||
[tool.setuptools.packages.find]
|
||
where = ["src"]
|
||
include = ["time_tracker*"]
|
||
|
||
[tool.pytest.ini_options]
|
||
testpaths = ["tests"]
|
||
python_files = ["test_*.py"]
|
||
python_classes = ["Test*"]
|
||
python_functions = ["test_*"] |