-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
47 lines (44 loc) · 1.53 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
# Copyright (C) 2013-2023 Karlsruhe Institute of Technology
#
# This file is part of syris.
#
# This library is free software: you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation, either
# version 3 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library. If not, see <http://www.gnu.org/licenses/>.
from syris import __version__
from setuptools import setup, find_packages
setup(
name='syris',
version=__version__,
python_requires='>=3.6',
author='Tomas Farago',
author_email='[email protected]',
url='http://github.com/ufo-kit/syris',
license='LGPL',
packages=find_packages(exclude=['*.tests']),
package_data={'syris': ['gpu/opencl/*.cl', 'gpu/opencl/*.in'],
'syris.devices': ['data/*']},
exclude_package_data={'': ['README.rst']},
description="X-ray imaging simulation",
long_description=open('README.rst').read(),
install_requires=[
'numpy>=1.6.1',
'quantities>=0.10.1',
'pyopencl>=2012.1',
'reikna',
'scipy>=0.11.0',
# Examples
'imageio',
'matplotlib',
'tqdm'
]
)