-
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 KB
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 1 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
[project]
name = "cpal"
version = "0.5.0"
description = "An MCP server providing stateful Claude access with extended thinking and tool use"
readme = "README.md"
license = "MIT"
authors = [{ name = "A Tobey", email = "tobert@gmail.com" }]
requires-python = ">=3.12"
keywords = ["mcp", "claude", "anthropic", "ai", "agent", "code-analysis"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"anthropic>=0.86.0",
"fastmcp>=3.0.1",
"mcp[cli]>=1.26.0",
"python-dotenv>=1.2.1",
]
[project.optional-dependencies]
dev = ["pytest>=9.0.2", "pytest-asyncio>=0.23"]
[project.scripts]
cpal = "cpal.server:main"
[project.urls]
Homepage = "https://github.com/tobert/cpal"
Repository = "https://github.com/tobert/cpal"
[build-system]
requires = ["uv_build>=0.9.3,<0.10.0"]
build-backend = "uv_build"