-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
66 lines (62 loc) · 1.28 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
61
62
63
64
65
66
import ndio
from distutils.core import setup
VERSION = ndio.version
"""
update docs with the `generatedocs` script.
roll with:
git tag VERSION
git push --tags
python setup.py sdist upload -r pypi
"""
setup(
name='ndio',
packages=[
'ndio',
'ndio.convert',
'ndio.ramon',
'ndio.remote',
'ndio.utils'
],
version=VERSION,
description='A Python library for open neuroscience data access and \
manipulation.',
author='Jordan Matelsky',
author_email='[email protected]',
url='https://github.com/neurodata/ndio',
download_url='https://github.com/neurodata/ndio/tarball/' + VERSION,
keywords=[
'brain',
'medicine',
'microscopy',
'neuro',
'neurodata',
'neurodata.io',
'neuroscience',
'ndio',
'ocpy',
'ocp',
'ocp.me',
'connectome',
'connectomics',
'spatial',
'EM',
'MRI',
'fMRI',
'calcium'
],
classifiers=[],
setup_requires=[
"requests",
'numpy',
],
install_requires=[
"pillow>=3.2.0",
"numpy>=1.0.0",
"h5py>=2.6.0",
"requests",
"blosc==1.3.2",
"jsonschema",
"json-spec",
"tifffile"
]
)