| [project] |
| name = "erp-bench" |
| version = "0.1.0" |
| description = "Odoo ERP Training Scenarios Setup" |
| requires-python = ">=3.12" |
| dependencies = [ |
| "pydantic>=2.0.0", |
| "rich>=13.0.0", |
| "ortools>=9.14.6206", |
| "jinja2>=3.1.0", |
| "numpy>=2.2.6", |
| ] |
|
|
| |
| |
| |
|
|
| [build-system] |
| requires = ["setuptools>=61.0", "wheel"] |
| build-backend = "setuptools.build_meta" |
|
|
| [tool.setuptools.packages.find] |
| include = ["schemas*", "erp_bench*"] |
|
|
| [tool.uv] |
| package = true |
| dev-dependencies = [ |
| "ruff>=0.14.1", |
| "ty>=0.0.1a26", |
| ] |
|
|
| [project.scripts] |
| generate-tasks = "erp_bench.generation.cli:main" |
|
|
| [tool.ruff] |
| line-length = 100 |
| target-version = "py312" |
|
|
| [tool.ruff.lint] |
| select = [ |
| "E", |
| "W", |
| "F", |
| "I", |
| "B", |
| "C4", |
| "UP", |
| ] |
| ignore = [ |
| "E501", |
| ] |
|
|
| [tool.ruff.format] |
| quote-style = "double" |
| indent-style = "space" |
|
|