-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (41 loc) · 988 Bytes
/
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
[tool.poetry]
name = "mytardis-rocrate-builder"
version = "0.1.0"
description = ""
authors = ["James Love <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<=3.13"
ro-crate-py = {git = "https://github.com/UoA-eResearch/ro-crate-py.git", branch = "encrypted-metadata"}
bagit = "^1.8.1"
types-python-slugify = "^8.0.2.20240310"
mypy = "^1.10.0"
pylint = "^3.2.2"
pydantic = "^2.7.1"
black = "^24.4.2"
uuid = "^1.30"
validators = "^0.28.3"
python-slugify = "^8.0.4"
safety = "^3.2.3"
pip-audit = "^2.7.3"
python-gnupg = "^0.5.2"
coverage = "^7.6.0"
hypothesis = "^6.110.1"
[tool.poetry.group.test.dependencies]
pytest = "^8.2.1"
requests-mock = "^1.12.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
disable_error_code = "import-untyped"
files = [
"**/*.py"
]
exclude = [
"^tests/.*$"
]
strict = true
ignore_missing_imports = true
[tool.isort]
profile = "black"