-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (34 loc) · 903 Bytes
/
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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
requires = [
'yaxil',
'pydicom',
'pynetdicom',
'requests-cache'
]
about = dict()
with open(os.path.join(here, 'realta', '__version__.py'), 'r') as f:
exec(f.read(), about)
setup(
name=about['__title__'],
version=about['__version__'],
description=about['__description__'],
author=about['__author__'],
author_email=about['__author_email__'],
url=about['__url__'],
packages=find_packages(),
package_data={
'': ['*.yaml', '*.csv']
},
include_package_data=True,
scripts=[
'scripts/xnat_set.py',
'scripts/xnat_dicom_send.py',
'scripts/xnat_file_upload.py',
'scripts/star_set_types.py',
'scripts/star_tag_audit.py',
'scripts/star_set_tags.py'
],
install_requires=requires
)