-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
34 lines (29 loc) · 887 Bytes
/
pyproject.toml
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
[project]
name = "mcp-crew-ai"
version = "0.1.0"
description = "MCP Crew AI Server - Run CrewAI agents through Model Context Protocol"
readme = "README.md"
authors = [
{ name = "adam.paterson", email = "hello@adampaterson.co.uk" }
]
requires-python = ">=3.11"
dependencies = [
"mcp[cli]>=1.3.0",
"crewai>=0.8.0",
"pyyaml>=6.0",
"importlib-metadata>=6.0.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/mcp_crew_ai"]
[project.scripts]
mcp-crew-ai = "mcp_crew_ai.cli:main"
[project.entry-points.uv]
mcp-crew-ai = "mcp_crew_ai.cli:main"
mcp-crew-ai-server = "mcp_crew_ai.server_cmd:main"
[project.urls]
Homepage = "https://github.com/adam-paterson/mcp-crew-ai"
Repository = "https://github.com/adam-paterson/mcp-crew-ai"
Issues = "https://github.com/adam-paterson/mcp-crew-ai/issues"