-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
93 lines (80 loc) · 2.76 KB
/
pyproject.toml
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
# NOTE: this repository uses the tool somesy to help you easily maintain
# and synchronize all the high-level project metadata across multiple files.
# To see which other metadata can be added, check out the somesy documentation
# https://materials-data-science-and-informatics.github.io/somesy/main/
[tool.somesy.project]
name = "beaverdam"
version = "0.1.0"
description = "Build, explore, and visualize experimental databases of metadata"
license = "BSD-3-Clause"
repository = "https://github.com/INM-6/beaverdam"
homepage = "https://github.com/INM-6/beaverdam"
documentation = "https://github.com/INM-6/beaverdam"
[[tool.somesy.project.people]]
given-names = "Heather"
family-names = "More"
email = "[email protected]"
affiliation = "Institute for Advanced Simulation (IAS-6 and IAS-9), Jülich Research Centre, Jülich, Germany"
orcid = "https://orcid.org/0000-0002-7514-2199"
author = true
maintainer = true
[[tool.somesy.project.people]]
given-names = "Michael"
family-names = "Denker"
email = "[email protected]"
affiliation = "Institute for Advanced Simulation (IAS-6), Jülich Research Centre, Jülich, Germany"
orcid = "https://orcid.org/0000-0003-1255-7300"
author = true
maintainer = true
[tool.somesy.config]
verbose = true
[tool.poetry]
# ---- DO NOT EDIT - core project metadata managed by somesy ----
# to update, edit values in [tool.somesy.project] section
# and run somesy: poetry run somesy
name = "beaverdam"
version = "0.1.0"
description = "Build, explore, and visualize experimental databases of metadata"
authors = ["Heather More <[email protected]>", "Michael Denker <[email protected]>"]
license = "BSD-3-Clause"
# ----
include = [
"LICENCE",
"CITATION.cff",
"codemeta.json",
]
packages = [{include = "beaverdam", from = "src"}]
maintainers = ["Michael Denker <[email protected]>", "Heather More <[email protected]>"]
homepage = "https://github.com/INM-6/beaverdam"
repository = "https://github.com/INM-6/beaverdam"
documentation = "https://github.com/INM-6/beaverdam"
[tool.poetry.dependencies]
python = "^3.9"
pymongo = "^4.3.2"
dash = "^2.6.2"
dash-extensions = "^0.1.6"
pandas = ">=2.1.0"
tomli = "^2.0.1"
plotly = "^5.13.1"
dash-bootstrap-components = ">=1.5.0"
dash-trich-components = "^1.0.0"
dash-mantine-components = "^0.12.1"
dash-bootstrap-templates = "^1.1.1"
odML = "^1.5.4"
tqdm = "^4.66.1"
typer = "^0.12.0"
tinydb = "^4.8.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
ruff = "^0.3.7"
pre-commit = "^3.7.0"
[tool.poetry.scripts]
beaverdam = 'beaverdam.cli:app'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
# Tool Configurations
# -------------------
[tool.ruff.lint]
extend-select = ["I", "D", "B", "S", "W"]
ignore = ["D203", "D213", "D407", "B008", "B006", "E722", "S110", "B024", "D107"]