Files
odoo-employee-schedule/pyproject.toml
T
Hubert Van De Walle 415871ba6f Initial chiffon
2026-08-21 11:17:21 +02:00

19 lines
471 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",
]
[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"]