-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·27 lines (25 loc) · 1.03 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
from os import path
from setuptools import setup
with open(path.join(path.dirname(path.abspath(__file__)), 'README.rst')) as f:
readme = f.read()
setup(
name = 'dcm_tagExtract',
version = '3.2.4',
description = 'This app performs a recursive walk down an input tree, and for each location with a DICOM file, will generate a report in the corresponding location in the output tree.',
long_description = readme,
author = 'Sandip Samal',
author_email = '[email protected]',
url = 'https://github.com/FNNDSC/pl-pfdicom_tagExtract#readme',
packages = ['dcm_tagExtract'],
install_requires = ['chrisapp','pillow','pfdicom_tagExtract'],
test_suite = 'nose.collector',
tests_require = ['nose'],
license = 'MIT',
zip_safe = False,
python_requires = '>=3.6',
entry_points = {
'console_scripts': [
'dcm_tagExtract = dcm_tagExtract.__main__:main'
]
}
)