-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
34 lines (32 loc) · 1.11 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
import os
import setuptools
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setuptools.setup(
name="cvu",
version="0.5.2",
maintainer="Roan LaPlante",
maintainer_email="[email protected]",
description=("A visualizer for human brain networks"),
license="Visuddhimagga Sutta; GPLv3+",
packages=["cvu"],
package_data={'cvu':['data/*','fsavg5/label/*','fsavg5/surf/*','orders/*',
'cmaps/*', 'cmap_images/*']},
data_files=[('licenses',['licenses/ENTHOUGHT_LICENSE',
'licenses/YORICK_LICENSE','licenses/COLORBREWER_LICENSE']),
('',['README','LICENSE'])],
scripts=['bin/cvu'],
url="https://github.com/aestrivex/cvu",
long_description=read('README'),
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: X11 Applications",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Programming Language :: Python :: 2.7",
"Topic :: Scientific/Engineering :: Visualization",
],
platforms=['any'],
install_requires=["bctpy","mne","nibabel"]
)