-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
60 lines (51 loc) · 1.91 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
57
58
59
60
from setuptools import setup, find_packages
exec (open('gputools/version.py').read())
setup(name='gputools',
version=__version__,
description='OpenCL accelerated volume processing',
url='https://github.com/maweigert/gputools',
author='Martin Weigert',
author_email='[email protected]',
license='BSD 3-Clause License',
packages=find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
keywords='science image-processing ',
install_requires=[
"six",
"scipy",
"numpy",
"pyopencl>=2016.1",
"configparser",
"reikna>=0.8.0"],
extras_require={
':python_version<"3.0"': ["scikit-tensor",
"ConfigParser",
],
':python_version>="3.0"': ["configparser",
# "scikit-tensor-py3",
],
},
package_data={"gputools":
['core/kernels/*.cl',
'convolve/kernels/*.cl',
'denoise/kernels/*.cl',
'deconv/kernels/*.cl',
'noise/kernels/*.cl',
'fft/kernels/*.cl',
'transforms/kernels/*.cl',
],
},
entry_points={}
)