-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 792 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 792 Bytes
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
from setuptools import setup, find_packages
# Load __version__ without importing it (avoids race condition with build)
exec(open('arrview/_version.py').read())
setup(name='arrview',
description='An N-dimensional array viewer',
author='jthacker',
author_email='thacker.jon@gmail.com',
version=__version__,
url='https://github.com/jthacker/arrview',
packages=find_packages(),
install_requires=[
'h5py',
'matplotlib',
'numpy',
'PySide',
'scipy', # required by skimage, but skimage doesn't install
'traits',
'traitsui',
'scikit-image'
],
tests_require=[
'pytest'
],
setup_requires=[
'pytest-runner'
],
)