-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# ─────────────────────────── pyproject.toml ───────────────────────────
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "reviewgenie-mcp" # PyPI package name
version = "1.3.0" # update when you tag
description = "ReviewGenie – Automated code-review server with MCP tooling"
authors = [{ name = "Mann Modi" }]
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
# Runtime dependencies (keep in sync with requirements.txt)
dependencies = [
"mcp>=1.9",
"PyGithub>=2.3",
"openai>=1.4",
"tiktoken",
"pyyaml",
"sentence-transformers",
"chromadb",
"pgvector",
"requests",
]
[project.urls]
Homepage = "https://github.com/mann-uofg/codeview_mcp-mcp"
Issues = "https://github.com/mann-uofg/codeview-mcp/issues"
[project.scripts]
reviewgenie = "codeview_mcp.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["codeview_mcp*"]