forked from xcist/main
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (16 loc) · 911 Bytes
/
Copy pathsetup.py
File metadata and controls
19 lines (16 loc) · 911 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 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.0',
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='Mingye.Wu@ge.com',
license='BSD 3-Clause License',
install_requires=['numpy', 'scipy', 'matplotlib'],
packages=['catsim'],
zip_safe=False,
package_data={'catsim':[r'lib/*.*', r'cfg/*.cfg', r'data/bowtie/*.dat', r'data/material/*', r'data/phantom/*.*', r'data/spectrum/*.dat', r'data/material/edlp/*/*.dat', ]},
include_package_data=False)