-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
81 lines (76 loc) · 1.8 KB
/
setup.cfg
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
[metadata]
name = strix
author = Chenglong Wang
author_email = [email protected]
url =
description = A Medical Deep Learning Platform
long_description = file:readme.md
long_description_content_type = text/markdown; charset=UTF-8
platforms = OS Independent
license = GNU General Public License
license_files =
LICENSE
project_urls =
Documentation=https://google.com/
Bug Tracker=https://github.com/Project-Strix/Strix/issues
Source Code=https://github.com/Project-Strix/Strix
[options]
python_requires = >= 3.7
# for compiling and develop setup only
# no need to specify the versions so that we could
# compile for multiple targeted versions.
setup_requires =
torch
ninja
install_requires =
torch>=1.7
numpy>=1.17
monai==0.8.0
monai_ex==0.1.0
tb-nightly
click
tqdm>=4.47.0
scikit-image>=0.14
scipy
numpy
scikit-learn
nibabel
pytorch-ignite==0.4.7
utils_cw
pyyaml
matplotlib
torchvision
pillow!=8.3.0
[options.extras_require]
pandas =
pandas
nni =
nni
[flake8]
select = B,C,E,F,N,P,T4,W,B9
max_line_length = 120
# C408 ignored because we like the dict keyword argument syntax
# E501 is not flexible enough, we're using B950 instead
ignore =
E203
E501
E741
W503
W504
C408
N812 # lowercase 'torch.nn.functional' imported as non lowercase 'F'
per_file_ignores = __init__.py: F401, __main__.py: F401
exclude = *.pyi,.git,.eggs,strix/_version.py,versioneer.py,venv,.venv,_version.py
[isort]
known_first_party = strix
profile = black
line_length = 120
skip = .git, .eggs, venv, .venv, versioneer.py, _version.py, conf.py, strix/__init__.py
skip_glob = *.pyi
[versioneer]
VCS = git
style = pep440
versionfile_source = strix/_version.py
versionfile_build = strix/_version.py
tag_prefix =
parentdir_prefix =