forked from aestrivex/bctpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 1015 Bytes
/
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
import os
import setuptools
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setuptools.setup(
name="bctpy",
version="0.5.0",
maintainer="Roan LaPlante",
maintainer_email="rlaplant@nmr.mgh.harvard.edu",
description=("Brain Connectivity Toolbox for Python"),
license="Visuddhimagga Sutta; GPLv3+",
long_description=read('README.md'),
datafiles=[('', ['README.md', 'LICENSE'])],
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 :: 3.4",
"Topic :: Scientific/Engineering :: Information Analysis",
],
url="https://github.com/aestrivex/bctpy",
platforms=['any'],
packages=['bct', 'bct.algorithms', 'bct.utils'],
install_requires=["numpy", "scipy"]
)