-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
94 lines (81 loc) · 1.84 KB
/
pyproject.toml
File metadata and controls
94 lines (81 loc) · 1.84 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "plot_serializer"
dynamic = ["version"]
description = "A simple tool for serializing scientific diagram to (FAIR) data."
readme = "README.md"
authors = [
{ name = "Michaela Lestakova", email = "michaela.lestakova@tu-darmstadt.de" },
{ name = "Ning Xia", email = "ning.xia@tu-darmstadt.de" }
]
keywords = ["rdm", "plot"]
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"numpy",
"pandas",
"matplotlib>=3.9",
"rdflib",
"pydantic",
"rocrate",
]
requires-python = ">=3.9"
[project.optional-dependencies]
dev = [
"ruff"
]
test = [
"pytest>=7.1.2",
"pytest-cov>=3.0.0",
"mypy>=0.971",
"pandas-stubs>=1.4.3.220822",
"types-tqdm>=4.64.5",
"types-pytz>=2022.2.1.0"
]
doc = ["sphinx>=5.1.1", "sphinx-rtd-theme>=1.0.0", "sphinx-autoapi",]
[project.urls]
repository = "https://git.rwth-aachen.de/rdm-tools/plot-serializer"
documentation = "https://plot-serializer.readthedocs.io/en/latest/"
[tool.setuptools.dynamic]
version = {attr = "plot_serializer.__version__"}
[tool.setuptools.packages.find]
where = ["."]
[tool.mypy]
strict = true
show_error_codes = true
[[tool.mypy.overrides]]
module = [
"matplotlib",
"matplotlib.axes",
"matplotlib.pyplot",
"OMPython",
"mpl_toolkits.*"
]
ignore_missing_imports = true
[tool.ruff]
line-length = 120
[tool.ruff.format]
docstring-code-format = true
docstring-code-line-length = 120
indent-style = "space"
[tool.ruff.lint]
select = [
"E",
"F",
"W",
"I",
"B",
"PT",
"N",
#"D",
]
preview = true
[tool.ruff.lint.pydocstyle]
convention = "google"