2024-01-02 00:25:03 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "python-lint"
|
|
|
|
version = "0.0.1"
|
|
|
|
description = "Python code-writing agent whose work is checked by black, ruff, and mypy."
|
|
|
|
authors = ["Joshua Sundance Bailey"]
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
ruff = ">=0.1.8"
|
2024-03-25 07:11:23 +00:00
|
|
|
black = "^24.2.0"
|
2024-01-02 00:25:03 +00:00
|
|
|
mypy = ">=1.7.1"
|
|
|
|
python = ">=3.8.1,<4.0"
|
2024-01-07 02:31:46 +00:00
|
|
|
langchain = "^0.1"
|
2024-01-02 00:25:03 +00:00
|
|
|
openai = ">=1.3.9"
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
2024-02-06 01:12:12 +00:00
|
|
|
langchain-cli = ">=0.0.21"
|
2024-03-13 03:48:56 +00:00
|
|
|
fastapi = ">=0.104.0,<1"
|
2024-01-02 00:25:03 +00:00
|
|
|
sse-starlette = "^1.6.5"
|
|
|
|
|
|
|
|
[tool.langserve]
|
|
|
|
export_module = "python_lint"
|
|
|
|
export_attr = "agent_executor"
|
|
|
|
|
|
|
|
[tool.templates-hub]
|
|
|
|
use-case = "code-generation"
|
|
|
|
author = "Joshua Sundance Bailey"
|
|
|
|
integrations = ["OpenAI"]
|
|
|
|
tags = ["python", "agent"]
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|