Files
Hubert Van De Walle 2187f1dfc3 Add gantt rendering
2026-08-21 12:04:01 +02:00

20 lines
491 B
TOML

[project]
name = "odoo-employee-schedule"
version = "0.1.0"
description = "Query Odoo for an employee's working days in a date range, including days off with no leave taken"
requires-python = ">=3.11"
dependencies = [
"requests>=2.31",
"rich>=15.0.0",
]
[project.scripts]
odoo-employee-schedule = "odoo_employee_schedule.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/odoo_employee_schedule"]