-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (77 loc) · 2.01 KB
/
pyproject.toml
File metadata and controls
84 lines (77 loc) · 2.01 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[project]
name = "prettypyplot"
version = "0.12.0"
description = "Wrapper for matplotlib to generate pretty plots."
readme = "README.md"
authors = [
{ name = "braniii" }
]
requires-python = ">=3.9"
license = "MIT"
license-files = ["BSD 3-Clause License"]
keywords = [
"matplotlib",
"pyplot",
]
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"matplotlib",
"numpy",
"decorit>=0.2.0",
]
[project.urls]
Documentation = "https://braniii.github.io/prettypyplot"
Repository = "https://github.com/braniii/prettypyplot"
Issues = "https://github.com/braniii/prettypyplot/issues"
Changelog = "https://braniii.github.io/prettypyplot/changelog"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
exclude = [
"docs",
]
[tool.ruff.lint]
# Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`) codes by default.
# Unlike Flake8, Ruff doesn't enable pycodestyle warnings (`W`) or
# McCabe complexity (`C901`) by default.
select = ["E4", "E7", "E9", "F", "C901"]
ignore = ["F722"]
# Allow fix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]
unfixable = []
preview = true
[tool.ruff.format]
quote-style = "single"
preview = true
[dependency-groups]
dev = [
"coverage>=7.10.3",
"pre-commit>=3.5.0",
"pytest>=8.4.1",
"pytest-cov>=6.2.1",
"pytest-mpl>=0.17.0",
"ruff>=0.12.0",
"tox>=4.27.0",
"tox-uv>=1.26.1",
]
docs = [
"jupyter>=1.1.1",
"mkdocs-gen-files>=0.5.0",
"mkdocs-jupyter>=0.25.1",
"mkdocs-literate-nav>=0.6.2",
"mkdocs-material>=9.6.14",
"mkdocs-section-index>=0.3.10",
"mkdocstrings-python>=1.16.12",
]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["E402", "F401"]
"**/{tests,docs}/*" = ["E402"]