-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (50 loc) · 1.75 KB
/
pyproject.toml
File metadata and controls
58 lines (50 loc) · 1.75 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
[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "plotID"
description = "The plotID toolkit supports researchers in tracking and storing relevant data in plots. Plots are labelled with an ID and the corresponding data is stored."
readme = "README.md"
license = {text = "Apache License, Version 2.0"}
authors = [
{name = "Institut für Fluidsystemtechnik - TU Darmstadt", email = "nfdi4ing@fst.tu-darmstadt.de"},
{name = "Hannes Mayr", email = "hannes.mayr@stud.tu-darmstadt.de"},
{name = "Martin Hock", email = "Martin.Hock@fst.tu-darmstadt.de"},
{name = "Manuela Richter", email = "Manuela.Richter@fst.tu-darmstadt.de"},
]
dynamic = ["version"]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Visualization",
]
dependencies = [
"Pillow",
"matplotlib",
"numpy",
"qrcode",
]
[project.urls]
Repository = "https://git.rwth-aachen.de/plotid/plotid_python"
Documentation = "https://plotid.pages.rwth-aachen.de/plotid_python"
"Bug Tracker" = "https://git.rwth-aachen.de/plotid/plotid_python/-/issues"
[project.optional-dependencies]
test = ["coverage"]
docs = [
"sphinx",
"sphinx-autoapi",
"sphinx-rtd-theme",
"myst-parser",
]
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
"plotid.resources.OpenSans" = ["*.ttf","OFL.txt"]
[tool.setuptools.dynamic]
version = {attr = "plotid.__version__"}