forked from xcist/main
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
21 lines (18 loc) · 918 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright 2020, General Electric Company. All rights reserved. See https://github.com/xcist/code/blob/master/LICENSE
# To install XCIST-CatSim, open Python console, run: pip install [folder name]
# e.g., you can navigate to this folder, run: pip install .
from setuptools import setup
setup(name='catsim',
version='0.1.6',
description='Simulation toolkit for X-ray based cancer imaging',
url='https://github.com/xcist',
author='Mingye Wu, Paul FitzGerald, Brion Sarachan, Bruno De Man',
author_email='[email protected]',
license='BSD 3-Clause License',
install_requires=['numpy', 'scipy', 'matplotlib'],
packages=['catsim'],
zip_safe=False,
package_data={'catsim':[r'lib/*.*', r'cfg/*.cfg',
r'bowtie/*.txt', r'material/*', r'material/edlp/*/*.dat',
r'phantom/*.*', r'scatter/*.dat', r'spectrum/*.dat']},
include_package_data=True)