-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (54 loc) · 1.93 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (54 loc) · 1.93 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
[project]
name = "dope-plot"
version = "0.2.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.3,<4.0.0)",
"matplotlib (>=3.10.0,<4.0.0)",
"numpy (>=2.2.1,<3.0.0)",
]
[project.optional-dependencies]
# Model Context Protocol server, for using dope-plot from Claude / other AIs.
mcp = ["mcp>=1.2.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.15.15"
pytest = "^9.0.3"
[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"]