2026-04-25 20:43:37 +12:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["setuptools>=68", "wheel"]
|
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
|
|
[project]
|
|
|
|
|
name = "data-entry-app-backend"
|
2026-05-01 17:40:47 +12:00
|
|
|
version = "0.1.4"
|
2026-04-25 20:43:37 +12:00
|
|
|
description = "Costing platform MVP backend"
|
|
|
|
|
requires-python = ">=3.11"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"fastapi>=0.115,<1.0",
|
2026-04-30 22:27:36 +12:00
|
|
|
"openpyxl>=3.1,<4.0",
|
2026-04-25 20:43:37 +12:00
|
|
|
"uvicorn[standard]>=0.30,<1.0",
|
|
|
|
|
"sqlalchemy>=2.0,<3.0",
|
|
|
|
|
"pydantic>=2.8,<3.0",
|
|
|
|
|
"pytest>=8.0,<9.0",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[tool.setuptools]
|
|
|
|
|
package-dir = {"" = "."}
|
|
|
|
|
|
|
|
|
|
[tool.setuptools.packages.find]
|
|
|
|
|
where = ["."]
|
|
|
|
|
include = ["app*"]
|
|
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
|
testpaths = ["tests"]
|