Initial chiffon

This commit is contained in:
Hubert Van De Walle
2026-08-21 11:17:21 +02:00
commit 415871ba6f
6 changed files with 594 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
[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"]