Files
AutoMetabuilder/pyproject.toml
copilot-swe-agent[bot] 4447e949ab Refactor validation to use jsonschema library with extracted schema file
Extract schema from ROADMAP.md to dedicated JSON file in schema/ folder.
Use jsonschema library for validation instead of custom implementation.
Add jsonschema to pyproject.toml dependencies.

Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
2026-01-10 23:44:08 +00:00

35 lines
795 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"
jsonschema = "^4.10.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
autometabuilder = "autometabuilder.main:main"
validate-workflows = "autometabuilder.tools.validate_workflows:main"
[dependency-groups]
dev = [
"playwright (>=1.57.0,<2.0.0)",
"pytest-playwright (>=0.7.2,<0.8.0)"
]