-
Notifications
You must be signed in to change notification settings - Fork 65
/
setup.py
77 lines (72 loc) · 2.39 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
67
68
69
70
71
72
73
74
75
76
77
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
__version__ = "0.4.6"
NAME = 'visbrain'
AUTHOR = "Visbrain developpers"
MAINTAINER = "Etienne Combrisson"
EMAIL = 'e.combrisson@gmail.com'
KEYWORDS = "brain MNI GPU visualization data OpenGL vispy neuroscience " + \
"sleep data-mining"
DESCRIPTION = "Hardware-accelerated visualization suite for " + \
"brain-data in Python"
URL = 'http://visbrain.org/'
DOWNLOAD_URL = "https://github.com/EtienneCmb/visbrain/archive/" + \
"v" + __version__ + ".tar.gz"
# Data path :
HERE = os.path.abspath(os.path.dirname(__file__))
PACKAGE_DATA = {}
def read(fname):
"""Read README and LICENSE."""
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
# DESCRIPTION
name=NAME,
version=__version__,
description=DESCRIPTION,
long_description=read('README.rst'),
keywords=KEYWORDS,
license="BSD 3-Clause License",
author=AUTHOR,
maintainer=MAINTAINER,
author_email=EMAIL,
url=URL,
download_url=DOWNLOAD_URL,
# PACKAGE / DATA
packages=find_packages(),
package_dir={'visbrain': 'visbrain'},
package_data=PACKAGE_DATA,
include_package_data=True,
platforms='any',
setup_requires=['numpy'],
install_requires=[
"numpy>=1.13",
"scipy",
"vispy>=0.5.3",
"matplotlib>=1.5.5",
"pyqt5",
"pillow",
"PyOpenGL"
],
extras_require={
'full': ["mne", "tensorpac", "pandas", "xlrd", "scikit-image",
"nibabel", "imageio"],
'sleep': ["mne", "tensorpac"],
'roi': ["pandas", "xlrd"],
'topo': ["scikit-image"]
},
dependency_links=[],
classifiers=["Development Status :: 3 - Alpha",
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Visualization',
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Natural Language :: English"
])