-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
96 lines (86 loc) · 2.26 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[bumpversion]
current_version = 0.2.2
commit = True
tag = False
[bumpversion:file:tiramisu_brulee/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
[flake8]
exclude = docs
per-file-ignores =
__init__.py: F401
max-line-length = 88
extend-ignore = E203
[aliases]
test = pytest
[tool:pytest]
collect_ignore = ['setup.py']
[metadata]
author = Jacob Reinhold
author_email = [email protected]
name = tiramisu-brulee
version = attr: tiramisu_brulee.__version__
description = A 2D and 3D PyTorch implementation of the Tiramisu CNN
long_description = file: README.rst, HISTORY.rst
long_description_content_type = text/x-rst
keywords = tiramisu, segmentation, neural network, convolutional, pytorch
license = Apache Software License 2.0
license_file = LICENSE
url = https://github.com/jcreinhold/tiramisu-brulee
project_urls =
Bug Tracker = https://github.com/jcreinhold/tiramisu-brulee/issues
Documentation = https://tiramisu-brulee.readthedocs.io/
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation :: CPython
Typing :: Typed
[options]
zip_safe = False
include_package_data = True
packages = find:
python_requires = >= 3.6
install_requires =
torch
test_suite = tests
[options.packages.find]
include =
tiramisu_brulee
tiramisu_brulee.*
exclude =
tests
docs
[options.package_data]
tiramisu_brulee = py.typed
[options.extras_require]
lesionseg =
jsonargparse~=3.12.0
numpy
pandas
pillow>=9.0.0
pytorch-lightning~=1.5.1
PyYAML
ruyaml
scikit-image
scipy
SimpleITK~=2.1.0
torchio
torchmetrics
mlflow = mlflow
onnx =
onnx
onnxruntime
[options.entry_points]
console_scripts =
lesion-train = tiramisu_brulee.experiment.cli.train:train
lesion-predict = tiramisu_brulee.experiment.cli.predict:predict
lesion-predict-image = tiramisu_brulee.experiment.cli.predict:predict_image
tiramisu-to-onnx = tiramisu_brulee.experiment.cli.to_onnx:to_onnx