-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (28 loc) · 913 Bytes
/
pyproject.toml
File metadata and controls
35 lines (28 loc) · 913 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
[project]
name = "matplotdrip"
dynamic = ["version"]
description = "Make your matplotlib dripped up."
readme = "README.md"
authors = [{ name = "Tom Hilder", email = "thomas.hilder@monash.edu" }]
requires-python = ">=3.9"
dependencies = ["matplotlib>=3.8"]
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"Typing :: Typed",
"Topic :: Scientific/Engineering :: Visualization",
]
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = ["src/matplotdrip/custom.mplstyle", "src/matplotdrip/py.typed"]
exclude = ["**/__pycache__/**"]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.sdist]
include = ["src/**", "README.md", "LICENSE", "examples/**"]
[tool.hatch.build.targets.wheel]
packages = ["src/matplotdrip"]
[tool.hatch.build.hooks.vcs]
version-file = "src/matplotdrip/_version.py"