-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
113 lines (92 loc) · 2.34 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]
[tool.mypy]
warn_return_any = true
warn_unused_configs = true
[[tool.mypy.overrides]]
ignore_missing_imports = true
module = [
"connexion.*",
"foca",
]
[tool.poetry]
authors = ["ELIXIR Cloud AAI <[email protected]>"]
classifiers = [
"Development Status :: 1 - Planning",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
]
description = "File handler utilizing TUS and MinIO with DRS-Filer integration."
license = "Apache-2.0"
maintainers = ["ELIXIR Cloud AAI <[email protected]>"]
name = "cloud_storage_handler"
readme = "README.md"
repository = "https://github.com/elixir-cloud-aai/cloud-storage-handler"
version = "0.1.0"
[tool.poetry.dependencies]
flask = "2.2.3"
foca = "^0.13.0"
minio = "^7.2.9"
python = ">=3.11,<4.0"
sphinx = "^8.0.2"
[tool.poetry.group.code_quality]
optional = true
[tool.poetry.group.code_quality.dependencies]
mypy = ">=1.10.0"
pre-commit = ">3.0.1"
ruff = ">=0.4.10"
typos = ">=1.22.8"
[tool.poetry.group.docs]
optional = false
[tool.poetry.group.docs.dependencies]
added-value = ">=0.24.0"
docutils = ">=0.20.1"
furo = ">=2024.5.6"
m2r2 = ">=0.3.3.post2"
sphinx = ">=7.3.7"
sphinx-autodoc-typehints = ">=2.1.0"
tomli = ">=2.0.1"
[tool.poetry.group.misc]
optional = true
[tool.poetry.group.misc.dependencies]
cruft = ">=2.15.0"
jello = ">=1.6.0"
pre-commit = ">=3.7.1"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = ">=8.2.2,<9.0.0"
pytest-cov = ">=5.0.0,<=6.0.0"
[tool.poetry.group.types]
optional = true
[tool.poetry.group.types.dependencies]
types-requests = "^2.32.0.20240712"
[tool.poetry.group.vulnerability]
optional = true
[tool.poetry.group.vulnerability.dependencies]
bandit = ">=1.7.8,<2.0.0"
safety = ">=3.2.0,<4.0.0"
[tool.poetry.scripts]
cloud-storage-handler = "cloud_storage_handler.main:main"
[tool.ruff]
indent-width = 4
[tool.ruff.format]
docstring-code-format = true
indent-style = "space"
line-ending = "lf"
quote-style = "double"
[tool.ruff.lint]
select = [
"B", # flake8-bugbear
"D", # pydocstyle
"E", # pycodestyle
"F", # Pyflakes
"I", # isort
"PL", # pylint
"SIM", # flake8-simplify
"UP", # pyupgrade
]
[tool.ruff.lint.pydocstyle]
convention = "google"