This repository was archived by the owner on Apr 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
96 lines (83 loc) · 1.91 KB
/
pyproject.toml
File metadata and controls
96 lines (83 loc) · 1.91 KB
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
[tool.poetry]
name = "cdapython"
version = "2023.9.12"
authors = ["cdadevs"]
description = ""
license = "Apache License"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.8,<=3.11"
wheel = "0.38.4"
urllib3= "1.26.8"
typing-extensions= "4.4"
rich = "13.2.0"
matplotlib = "3.5.1"
pandas = "1.4.0"
python-dotenv = "0.18.0"
itables = "^1.1.2"
nbconvert = "6.5.1"
Pillow = "9.3.0"
notebook = "6.4.12"
fastjsonschema = "2.16.2"
jupyter-core = "4.12"
pyzmq = "25"
cda-client = {git = "https://github.com/CancerDataAggregator/cda-service-python-client.git", rev = "3.3.2"}
lark = "^1.1.5"
regex = "^2022.10.31"
tornado = "^6.3.2"
requests = "^2.31.0"
ipywidgets = "7.6.5"
anyio = "^3.7.1"
[tool.poetry.dev-dependencies]
pytest = "7.2.0"
safety = "^2.1.1"
isort = "^5.10.1"
black = "^22.8.0"
mypy = "^0.971"
bandit = "^1.7.4"
flake8 = "^5.0.4"
pytest-cov = "^3.0.0"
certifi = "2022.12.7"
coverage = "7.0.5"
platformdirs="2.6.2"
[tool.poetry.group.dev.dependencies]
invoke = "^2.0.0"
watchdog = "^2.2.1"
pylint = "^2.17.2"
[build-system]
# Minimum requirements for the build system to execute.
requires = ["setuptools","wheel"]
build-backend = "setuptools.build_meta"
[tool.mypy]
ignore_missing_imports = true
strict = true
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
disallow_untyped_decorators = true
warn_redundant_casts = true
warn_unreachable = true
warn_unused_ignores = true
show_column_numbers = true
follow_imports = "silent"
[tool.black]
line-length = 88
target-version = ['py37']
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 88
[tool.bandit]
targets = ["cdapython"]
exclude = ["venv", "ven3", "tests"]
skips = ["B101", "B601"]
[tool.pylint.messages_control]
max-line-length = 88
disable = [
"too-many-public-methods",
"invalid-name"
]