-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (48 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
57 lines (48 loc) · 1.31 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[project]
name = "plane-mcp-server"
version = "0.2.9"
description = "A Model Context Protocol server for Plane integration"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name= "Surya Prashanth", email = "surya.prashanth@plane.so"},
{name = "Plane Engineering", email = "support@plane.so"}
]
keywords = ["mcp", "plane", "fastmcp", "ai", "automation"]
dependencies = [
"fastmcp==2.14.4",
"plane-sdk==0.2.8",
"py-key-value-aio[redis]==0.3.0",
"mcp==1.26.0",
"PyJWT>=2.12.0",
"authlib>=1.6.9",
# pydocket 0.16.6 (pinned by fastmcp 2.14.4) imports `FakeConnection` from
# `fakeredis.aioredis`, which was removed in fakeredis 2.35.0.
"fakeredis[lua]>=2.32.1,<2.35.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"ruff>=0.1.0",
]
[project.scripts]
plane-mcp-server = "plane_mcp.__main__:main"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["plane_mcp*"]
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
ignore = []
[tool.ruff.format]
quote-style = "double"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]