-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
56 lines (50 loc) · 1.58 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
import os
from setuptools import setup, find_packages
exec (open('spimagine/version.py').read())
setup(name='spimagine',
version=__version__,
description='OpenCL volume rendering in 3D/4D',
url='https://github.com/maweigert/spimagine',
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 :: Scientific/Engineering',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
install_requires=[
'numpy',
'scipy',
"PyOpenGL",
"pyopencl",
"gputools",
"imageio",
"sortedcontainers"
],
extras_require={
':python_version<"3.0"': [
"ConfigParser",
],
':python_version>="3.2"': [
"configparser",
"pyqt5"
],
},
package_data={"spimagine": ['volumerender/kernels/*',
'gui/shaders/*',
'gui/images/*',
'colormaps/*',
'data/*',
'lib/*']},
entry_points={
'gui_scripts': [
'spimagine = spimagine.bin.spimagine_gui:main'
]
}
)