-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (46 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
56 lines (46 loc) · 1.18 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
# uv-build backend does not allow project name to differ from the package name
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
include = ["spaceplot*"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"spaceplot.resources" = [
"fonts/*/*.ttf",
"fonts/*/*.otf",
"palettes/*",
]
[project]
name = "mpl-spaceplot"
version = "0.3.1"
description = "layout wrappers for matplotlib"
keywords = ["matplotlib", "plotting", "wrappers"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
authors = [{ name = "Florian Raths", email = "raths.f@gmail.com" }]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"matplotlib >= 3.7",
"cmcrameri >= 1.9",
]
[dependency-groups]
dev = [
"ipykernel >= 6.30.1",
"ipywidgets >= 8.1.7",
"jupytext >= 1.18.0",
]
docs = ["mkdocs ~= 1.6", "mkdocs-material ~= 9.6"]
[tool.uv]
required-version = ">=0.7.0"
default-groups = ["dev", "docs"]
[tool.uv-ship]
release-branch = "main"
allow-dirty = false