-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (42 loc) · 1.4 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (42 loc) · 1.4 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "plot-misc"
version = "2.2.2"
description = "Various plotting templates built on top of matplotlib"
readme = "README.md"
authors = [{ name = "A Floriaan Schmidt", email = "floriaanschmidt@gmail.com" }]
license = "GPL-3.0-or-later"
license-files = ["LICENSE"]
requires-python = ">=3.10, <3.13"
dynamic = ["dependencies", "optional-dependencies"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: PyPy"
]
[project.urls]
Homepage = "https://gitlab.com/SchmidtAF/plot-misc"
Documentation = "https://schmidtaf.gitlab.io/plot-misc/"
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[tool.setuptools.dynamic.optional-dependencies]
dev = { file = ["requirements-dev.txt"] }
[tool.setuptools.packages.find]
include = ["plot_misc*"]
exclude = ["tests", "*.tests", "*.tests.*", "tests.*"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"plot_misc" = ["*.md", "*.txt", "*.rst"]
[tool.setuptools.exclude-package-data]
"*" = ["tests/*"]
[tool.pytest.ini_options]
markers = [
"datafiles: load datafiles"
]
testpaths = ["tests"]