-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
48 lines (45 loc) · 1.35 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
42
43
44
45
46
47
48
#!/usr/bin/env python3
from setuptools import setup, find_packages
from rhscripts.version import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='rhscripts',
version=__version__,
author="Claes Ladefoged",
author_email="claes.noehr.ladefoged@regionh.dk",
description="Scripts used at CAAI",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/CAAI/rh-scripts",
scripts=[
'dicom/anonymize_dicom.py',
'dicom/replace_dicom_container.py',
'conversion/dicom_to_minc.py',
'conversion/rtx2mnc.py',
'conversion/rtx2nii.py',
'conversion/mnc2rtx.py',
'conversion/nii2rtx.py',
'conversion/mnc2dcm.py',
'conversion/nii2dcm.py',
'conversion/rtdose2mnc.py',
'conversion/hu2lac.py',
'conversion/lac2hu.py',
'utils/lmparser.py',
'utils/dice_score.py'
],
packages=find_packages(),
install_requires=[
'pyminc',
'pydicom',
'opencv-python',
'matplotlib',
'pandas',
'nipype',
'scikit-image',
'nibabel'
],
classifiers=[
'Programming Language :: Python :: 3.8',
],
)