-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (42 loc) · 1.06 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
[tool.poetry]
name = "cbio_importer"
version = "0.0.1"
description = "CBioPortal Importer Image"
authors = ["BBMRI ERIC <jiri.horak@bbmri-eric.eu>"]
license = "MIT"
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
# pydantic = {extras = ["dotenv"], version = "^2.0.0"}
numpy = "^1.22.3"
pandas = "^2.2.2"
pydantic-settings = "^2.0.2"
pyyaml = "^6.0.1"
jinja2 = "^3.1.4"
markupsafe = "^2.1.5"
[tool.poetry.dev-dependencies]
black = "^24.0.0"
debugpy = "^1.5.1"
isort = "^5.10.1"
psutil = "^5.9.0"
pycodestyle = "^2.8.0"
pylint = "^3.0.0"
pytest-aioresponses = "^0.2.0"
pytest-asyncio = "^0.23.0"
pytest-cov = "^4.0.0"
pytest = "^8.0.0"
requests-mock = "^1.9.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
[tool.isort]
line_length = 120
profile = "black"
multi_line_output = 3
include_trailing_comma = true
[tool.pylint."MASTER"]
ignored-modules = ["pydantic"]
[tool.pylint."MESSAGES CONTROL"]
max-line-length = 120
disable = "R,C,W0613,E0213,W0603,W0231,E1136,W0707,W0622,W0201,E0401,W3101,W0212,W0621"