mirror of
https://github.com/johndoe6345789/AutoMetabuilder.git
synced 2026-04-24 13:54:59 +00:00
- Implement core components: CLI argument parsing, environment loading, GitHub service creation, and logging configuration. - Add support for OpenAI client setup and model resolution. - Develop SDLC context loader from GitHub and repository files. - Implement workflow context and engine builders. - Introduce major workflow packages: `game_tick_loop` and `contextual_iterative_loop`. - Update localization files with new package descriptions and labels. - Streamline web navigation by loading items from a dedicated JSON file.
33 lines
703 B
TOML
33 lines
703 B
TOML
[tool.poetry]
|
|
name = "autometabuilder"
|
|
version = "0.1.0"
|
|
description = "AutoMetabuilder"
|
|
authors = ["Your Name <you@example.com>"]
|
|
readme = "README.md"
|
|
packages = [{include = "autometabuilder", from = "backend"}]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
requests = "^2.31.0"
|
|
pyyaml = "^6.0.1"
|
|
python-dotenv = "^1.0.0"
|
|
openai = "^1.0.0"
|
|
PyGithub = "^2.1.1"
|
|
tenacity = "^9.1.2"
|
|
flask = "^2.3.3"
|
|
slack-sdk = "^3.39.0"
|
|
discord-py = "^2.6.4"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry.scripts]
|
|
autometabuilder = "autometabuilder.main:main"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"playwright (>=1.57.0,<2.0.0)",
|
|
"pytest-playwright (>=0.7.2,<0.8.0)"
|
|
]
|