-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·41 lines (39 loc) · 1.58 KB
/
setup.py
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
from setuptools import setup
setup(
name = 'lld_inference',
version = '2.2.22',
description = 'An app to run LLD inference',
author = 'FNNDSC',
author_email = '[email protected]',
url = 'https://github.com/FNNDSC/pl-lld_inference#readme',
packages = ['lld_inference',
'LLDcode',
'LLDcode.datasets',
'LLDcode.graph',
'LLDcode.datasources',
'LLDcode.generators',
'LLDcode.iterators',
'LLDcode.tensorflow_train',
'LLDcode.tensorflow_train.utils',
'LLDcode.tensorflow_train.layers',
'LLDcode.tensorflow_train.losses',
'LLDcode.tensorflow_train.networks',
'LLDcode.utils',
'LLDcode.utils.io',
'LLDcode.utils.landmark',
'LLDcode.transformations',
'LLDcode.transformations.spatial',
'LLDcode.transformations.intensity.np',
'LLDcode.transformations.intensity.sitk'],
install_requires = ['chrisapp'],
test_suite = 'nose.collector',
tests_require = ['nose'],
license = 'MIT',
zip_safe = False,
python_requires = '>=3.6',
entry_points = {
'console_scripts': [
'lld_inference = lld_inference.__main__:main'
]
}
)