diff --git a/pyproject.toml b/pyproject.toml index 6ffc174..a246a93 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,7 +28,8 @@ build-backend = "poetry.core.masonry.api" dev = [ "pytest-cov (>=7.0.0,<8.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" 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" + + +[tool.setuptools.packages.find] +where = ["src"] +include = ["*"]