-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 1.11 KB
/
setup.py
File metadata and controls
32 lines (29 loc) · 1.11 KB
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
import os
import setuptools
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setuptools.setup(
name="ielu",
version="0.3.0",
maintainer="Roan LaPlante",
maintainer_email="rlaplant@nmr.mgh.harvard.edu",
description=("Interactive Electrode localization Utility"),
license="Visuddhimagga Sutta; GPLv3+",
datafiles=[('', ['readme.md', 'LICENSE'])],
long_description=read('readme.md'),
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.8",
"Topic :: Scientific/Engineering :: Information Analysis",
],
url="https://github.com/aestrivex/ielu",
platforms=['any'],
packages=['ielu'],
package_data={'ielu':['make_dural_surface.csh']},
scripts=['bin/ielu', 'ielu/mkoutersurf.py'],
install_requires=["numpy", "scipy", "pymcubes", "pysurfer", "nibabel", "mne"]
)