-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (54 loc) · 1.52 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
49
50
51
52
53
54
55
56
import setuptools
with open("readme.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="syd",
version="0.0.1",
author="David Sarrut",
author_email="[email protected]",
description="SYD - Dosimetry for Molecular Radiation Therapy",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://gitlab.in2p3.fr/dsarrut/syd",
package_dir={ 'syd': 'syd',
'syd_test': 'syd_test'},
packages=['syd', 'syd_test'],
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
),
python_requires='>=3.6',
install_requires=[
'gatetools>=0.8.8',
'click>=8.0.0',
'dataset',
'pydicom',
'tqdm',
'colored',
'itk>=5.0.1',
'python-box',
'pandas',
'xlrd',
'tabulate',
'SQLAlchemy>=1.4.22'
],
scripts=[
'bin/syd_create',
'bin/syd_info',
'bin/syd_find_old',
'bin/syd_find',
'bin/syd_delete',
'bin/syd_update',
'bin/syd_dicom_info',
'bin/syd_insert_dicom',
'bin/syd_insert_image_from_dicom',
'bin/syd_stitch_image',
'bin/syd_geometrical_mean',
'bin/syd_faf_calibration',
'bin/syd_insert_view',
'bin/syd_clear_view',
'bin/syd_struct2roi',
'bin/syd_timeline',
'bin/syd_snapshot']
)