-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (59 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
68 lines (59 loc) · 1.35 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
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "matplotlib-skill"
version = "0.1.0"
description = "Claude Code skill for publication-quality matplotlib/seaborn charts"
readme = "README.md"
requires-python = ">=3.11"
authors = [
{ name = "Tim von Hahn", email = "tim@tvhahn.com" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"pandas>=2.0.0",
"numpy>=1.26.0",
"jupyter>=1.0.0",
"matplotlib>=3.8.0",
"ipykernel>=6.29.0",
"seaborn>=0.13.0",
"pyyaml>=6.0",
"scikit-learn>=1.3.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.2.0",
"pytest-asyncio>=0.21.1",
"pytest-cov>=4.1.0",
"ruff>=0.4.4",
]
[tool.setuptools.packages.find]
where = ["src"]
include = ["matplotlib_skill*"]
exclude = ["tests*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = [".", "src"]
markers = [
"integration: marks tests as integration tests",
"slow: marks tests as slow",
]
[tool.ruff]
line-length = 88
indent-width = 4
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.ruff.format]
quote-style = "double"
[dependency-groups]
dev = [
"pytest>=9.0.1",
"pytest-asyncio>=1.3.0",
]