-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (53 loc) · 1.57 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# Poetry
[tool.poetry]
name = "rocrate-zenodo"
version = "0.1.1"
description = "Upload RO-Crates to Zenodo and automatically fill the Zenodo metadata"
authors = [
"Eli Chadwick <[email protected]>",
"Stian Soiland-Reyes <[email protected]>",
]
maintainers = ["Eli Chadwick <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
homepage = "https://www.researchobject.org/ro-crate/"
repository = "https://github.com/ResearchObject/ro-crate-zenodo"
keywords = ["rocrate", "RO-Crate"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[tool.poetry.dependencies]
python = "^3.8.1"
zenodo-client = "^0.3.4"
rocrate = "^0.10.0"
[tool.poetry.group.dev.dependencies]
flake8 = "^7.1.0"
black = "^24.4.2"
pytest = "^8.2.2"
pytest-cov = "^5.0.0"
mypy = "^1.10.1"
types-requests = "^2.32.0"
[tool.poetry.scripts]
rocrate_zenodo = "rocrate_zenodo.main:cli_entry"
[tool.poetry.urls]
"Issues" = "https://github.com/ResearchObject/ro-crate-zenodo/issues"
# Testing tools
## Mypy
[tool.mypy]
[[tool.mypy.overrides]]
module = "rocrate.*"
ignore_missing_imports = true
## Pytest
[tool.pytest.ini_options]
pythonpath = "src"
addopts = "--cov=rocrate_zenodo"