mirror of
https://github.com/zvx-echo6/navi.git
synced 2026-08-26 17:31:37 +00:00
25 lines
658 B
TOML
25 lines
658 B
TOML
|
|
[build-system]
|
||
|
|
requires = ["setuptools>=68"]
|
||
|
|
build-backend = "setuptools.build_meta"
|
||
|
|
|
||
|
|
[project]
|
||
|
|
name = "navi-backend"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "Echo6 navi-backend monorepo — Navi API services extracted from recon (decoupling project)."
|
||
|
|
requires-python = ">=3.10"
|
||
|
|
# Single workspace, single .venv. pytest is included so `pip install -e .` is the
|
||
|
|
# only setup step needed before running the test suite.
|
||
|
|
dependencies = [
|
||
|
|
"Flask>=3.0",
|
||
|
|
"gunicorn>=21",
|
||
|
|
"requests>=2.31",
|
||
|
|
"pytest>=8",
|
||
|
|
]
|
||
|
|
|
||
|
|
[tool.setuptools.packages.find]
|
||
|
|
where = ["."]
|
||
|
|
include = ["shared*", "services*"]
|
||
|
|
namespaces = true
|
||
|
|
|
||
|
|
[tool.pytest.ini_options]
|
||
|
|
testpaths = ["services"]
|