This repository has been archived by the owner on Sep 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
131 lines (117 loc) · 3.08 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "prognosais"
version = "0.3.5"
description = "Tool to quickly and easily train CNNs for medical imaging tasks"
license = "Apache-2.0"
authors = ["Sebastian van der Voort <[email protected]>"]
readme = "README.md"
repository = "https://github.com/Svdvoort/prognosais"
keywords = []
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
packages = [
{ include = "PrognosAIs" },
]
[tool.poetry.dependencies]
python = ">=3.7, <3.9"
matplotlib = "^3.2.1"
natsort = ">=7.0.1,<9.0.0"
pandas = "^1.0.3"
PyYAML = ">=5.3.1,<7.0.0"
scikit-learn = ">=0.23,<1.1"
slurmpie = ">=0.4,<0.6"
SimpleITK = ">=1.2.4,<3.0.0"
psutil = "^5.7.0"
numba = ">=0.49.1,<0.57.0"
tensorflow = ">=2.2.0"
numpy = "^1.18"
h5py = "^2.10.0"
tensorflow-io = ">=0.15"
tensorboard_plugin_profile = "^2.2.0"
tensorflow-addons = ">=0.11"
[tool.poetry.dev-dependencies]
pytest = "^7.1.3"
mypy = "^0.921"
darglint = "^1.8.1"
flake8 = "^4.0.1"
flake8-2020 = "^1.6.1"
flake8-aaa = "^0.12.2"
flake8-annotations = "^2.9.1"
flake8-annotations-complexity = "^0.0.7"
flake8-annotations-coverage = "^0.0.6"
flake8-assertive = "^2.1.0"
flake8-bandit = "^3.0.0"
flake8-black = "^0.2.4"
flake8-broken-line = "^0.5.0"
flake8-bugbear = "^22.9.23"
flake8-builtins = "^1.5.2"
flake8-cognitive-complexity = "^0.1.0"
flake8-commas = "^2.1.0"
flake8-comprehensions = "^3.10.0"
flake8-debugger = "^4.1.2"
unimport = "^0.12.1"
Sphinx = "^4.3.2"
flake8-docstrings = "^1.6.0"
flake8-eradicate = "^1.4.0"
flake8-executable = "^2.1.2"
flake8-expression-complexity = "^0.0.11"
flake8-fixme = "^1.1.1"
flake8-functions = "^0.0.7"
flake8-import-order = "^0.18.1"
flake8-isort = "^4.2.0"
flake8-logging-format = "^0.7.5"
flake8-markdown = "^0.3.0"
flake8-mutable = "^1.2.0"
flake8-pep3101 = "^1.3.0"
flake8-pie = "^0.16.0"
flake8-plugin-utils = "^1.3.2"
flake8-polyfill = "^1.0.2"
flake8-pytest = "^1.4"
flake8-pytest-style = "^1.6.0"
flake8-quotes = "^3.3.1"
flake8-requirements = "^1.7.1"
flake8-rst = "^0.8.0"
flake8-rst-docstrings = "^0.2.7"
flake8-strict = "^0.2.1"
flake8-string-format = "^0.3.0"
flake8-typing-imports = "^1.12.0"
flake8-variables-names = "^0.0.5"
pandas-vet = "^0.2.3"
pep8-naming = "^0.13.2"
pytest-cov = "^3.0.0"
pytest-datafiles = "^2.0"
pytest-xdist = "^2.5.0"
sphinx-autodoc-typehints = "^1.17.1"
xdoctest = "^1.1.0"
pre-commit = "^2.20.0"
recommonmark = "^0.7.1"
sphinx_rtd_theme = "^1.0.0"
black = "^21.7b0"
pytest-memprof = "^0.2.0"
[tool.black]
line-length = 100
target-version = ['py36', 'py37', 'py38']
[tool.isort]
line_length = 100
force_single_line = true
atomic = true
include_trailing_comma = true
lines_after_imports = 2
lines_between_types = 1
multi_line_output = 3
use_parentheses = true
not_skip = "__init__.py"
skip_glob = ["*/setup.py"]
filter_files = true
[tool.darglint]
docstring_style = "google"
[tool.dephell.main]
from = {format = "poetry", path = "pyproject.toml"}
to = {format = "setuppy", path = "setup.py"}