-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 979 Bytes
/
Copy pathpyproject.toml
File metadata and controls
43 lines (39 loc) · 979 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
36
37
38
39
40
41
42
43
[project]
name = "arctrl"
version = "3.0.5"
description = "Library for management of Annotated Research Contexts (ARCs) using an in-memory representation and runtimer agnostic contract systems."
authors = [
{ name = "Heinrich Lukas Weil", email = "weil@rptu.de" },
{ name = "Kevin Frey", email = "freymaurer@gmx.de" },
]
requires-python = ">=3.11"
readme = "README.md"
maintainers = [{ name = "Florian Wetzels" }]
keywords = [
"arc",
"annotated research context",
"isa",
"research data",
"multi platform",
]
dependencies = [
"requests>= 2.28.1, <3.0.0",
"openpyxl>=3.1.5,<4",
]
[project.urls]
Repository = "https://github.com/nfdi4plants/ARCtrl"
[dependency-groups]
dev = [
"pytest>=8.1.1,<9",
"twine>=4.0.2"
]
[tool.poetry]
include = [
"src/ARCtrl/py/**/*.py"
]
packages = [
{ include = "**/*.py", from = "src/ARCtrl/", to = "arctrl" }
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"