-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (61 loc) · 2.43 KB
/
Copy pathpyproject.toml
File metadata and controls
69 lines (61 loc) · 2.43 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
58
59
60
61
62
63
64
65
66
67
68
69
[project]
name = "dope-plot"
version = "0.3.0"
description = "Radar, quadrant and comparison charts for TICK four-bird personality profiles — CLI and MCP server"
authors = [{ name = "Anton Arapov" }]
license = "Apache-2.0"
license-files = ["LICENSE"]
readme = "README.md"
requires-python = ">=3.12"
keywords = ["personality", "tick", "disc", "radar-chart", "quadrant", "visualization", "matplotlib", "mcp"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Multimedia :: Graphics",
]
dependencies = [
"pandas (>=3.0.5,<4.0.0)",
"matplotlib (>=3.11.1,<4.0.0)",
"numpy (>=2.5.2,<3.0.0)",
# matplotlib's image backend (pulled transitively); floored to the patched
# release that fixes the 2026 Pillow CVEs (GHSA/CVE image-parsing issues).
"pillow (>=12.3.0)",
]
[project.optional-dependencies]
# Model Context Protocol server, for using dope-plot from Claude / other AIs.
# mcp_server.py uses the 2.x high-level API (mcp.server.mcpserver.MCPServer,
# the successor of 1.x FastMCP); capped <3.0.0 against the next breaking major.
# cryptography comes transitively via mcp's auth stack; floored to the release
# that fixes GHSA-g6cj-pr64-35w5 (PKCS#7 Bleichenbacher oracle).
mcp = ["mcp>=2.0.0,<3.0.0", "cryptography>=50.0.0"]
[project.scripts]
dope-plot = "dope_plot.cli:main"
dope-plot-mcp = "dope_plot.mcp_server:main"
[project.urls]
Homepage = "https://github.com/soil-dev/dope-plot"
Repository = "https://github.com/soil-dev/dope-plot"
Issues = "https://github.com/soil-dev/dope-plot/issues"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
include = [
{ path = "dope_plot/default_config.toml", format = ["sdist", "wheel"] },
# Icon sets are data files installed next to the package; the bundled
# default config points at ../icons/emoji from dope_plot/.
{ path = "icons/**/*", format = ["sdist", "wheel"] },
]
[tool.poetry.group.dev.dependencies]
ruff = "^0.16.3"
pytest = "^9.1.1"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
# E/W pycodestyle, F pyflakes, I import-sort, B bugbear, UP pyupgrade
select = ["E", "F", "I", "W", "B", "UP"]