-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 974 Bytes
/
pyproject.toml
File metadata and controls
52 lines (46 loc) · 974 Bytes
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
[build-system]
requires = ["hatchling>=1.21"]
build-backend = "hatchling.build"
[project]
name = "matplotlib-window-tracker"
version = "1.3.0"
description = "Persist Matplotlib window geometry across runs + terminal-run helpers"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
authors = [{ name = "Andrea Alberti" }]
dependencies = [
"matplotlib>=3.5",
]
[project.optional-dependencies]
qt = [
"PySide6>=6.5",
]
test = [
"pytest>=7",
]
[project.scripts]
mpl-patch-for-mwt = "matplotlib_window_tracker._patch_cli:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"
[tool.hatch.build.targets.wheel]
packages = ["src/matplotlib_window_tracker"]
[tool.hatch.build.targets.sdist]
ignore-vcs = true
only-include = [
"src/matplotlib_window_tracker",
"pyproject.toml",
"README.md",
"LICENSE",
]
exclude = [
"bin/",
"examples/",
"tests/",
"skills/",
".github/",
".venv/",
"tests.py",
".DS_Store",
]