chore: add src ubication

This commit is contained in:
2026-02-17 13:27:47 -05:00
parent 66fe0a2a13
commit 7b876990fb

View File

@@ -28,7 +28,8 @@ build-backend = "poetry.core.masonry.api"
dev = [ dev = [
"pytest-cov (>=7.0.0,<8.0.0)", "pytest-cov (>=7.0.0,<8.0.0)",
"taskipy (>=1.14.1,<2.0.0)", "taskipy (>=1.14.1,<2.0.0)",
"langgraph-cli[inmem] (>=0.4.12,<0.5.0)" "langgraph-cli[inmem] (>=0.4.12,<0.5.0)",
"ipython (>=9.10.0,<10.0.0)"
] ]
@@ -36,3 +37,8 @@ dev = [
dev = "uvicorn src.naliiabotapi.main:app --host 0.0.0.0 --port 8010 --reload" dev = "uvicorn src.naliiabotapi.main:app --host 0.0.0.0 --port 8010 --reload"
test = "pytest tests/test_agent.py -v" test = "pytest tests/test_agent.py -v"
test-cov = "pytest tests/test_agent.py --cov=src.naliiabot.bot.agent --cov-report=html && python -m http.server 8000 --directory htmlcov" test-cov = "pytest tests/test_agent.py --cov=src.naliiabot.bot.agent --cov-report=html && python -m http.server 8000 --directory htmlcov"
[tool.setuptools.packages.find]
where = ["src"]
include = ["*"]