72 lines
1.6 KiB
TOML
72 lines
1.6 KiB
TOML
[project]
|
|
name = "pr-reviewer"
|
|
version = "0.1.0"
|
|
description = "A PR Reviewer system using CrewAI and MCP"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10,<3.14"
|
|
authors = [
|
|
{name = "Developer", email = "dev@example.com"}
|
|
]
|
|
keywords = ["pull-request", "code-review", "security", "infrastructure", "crewai", "mcp"]
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
]
|
|
dependencies = [
|
|
"crewai>=0.28.0",
|
|
"fastapi>=0.104.0",
|
|
"uvicorn>=0.24.0",
|
|
"mcp>=0.1.0",
|
|
"pydantic>=2.5.0",
|
|
"python-dotenv>=1.0.0",
|
|
"gitpython>=3.1.0"
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
anthropic = ["anthropic>=0.7.0"]
|
|
openai = ["openai>=1.0.0"]
|
|
ollama = []
|
|
dev = [
|
|
"pytest>=7.0.0",
|
|
"black>=22.0.0",
|
|
"flake8>=4.0.0",
|
|
"mypy>=0.9.0",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/your-org/pr-reviewer"
|
|
Documentation = "https://github.com/your-org/pr-reviewer#readme"
|
|
Repository = "https://github.com/your-org/pr-reviewer.git"
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.black]
|
|
line-length = 88
|
|
target-version = ['py310']
|
|
include = '\.py$'
|
|
exclude = '''
|
|
/(\.git
|
|
| \.hg
|
|
| \.mypy_cache
|
|
| \.tox
|
|
| \.venv
|
|
| _build
|
|
| buck-out
|
|
| build
|
|
| dist
|
|
)/
|
|
'''
|
|
|
|
[tool.mypy]
|
|
python_version = "3.10"
|
|
warn_return_any = true
|
|
warn_unused_configs = true
|