-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
36 lines (34 loc) · 1.25 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
from pathlib import Path
from setuptools import setup, find_packages
import sys
lines = (Path(__file__).parent / "mne_ari" / "__init__.py").read_text().splitlines()
for line in lines:
if line.startswith("__version__"):
version = line.split("=")[1].strip().strip("\"")
break
else:
raise RuntimeError("Could not find version in mne_ari/__init__.py")
setup(
name = 'mne-ari',
version = version,
description = 'All-Resolutions Inference for M/EEG',
url = 'https://github.com/john-veillette/mne-ari',
author = 'John Veillette',
author_email = '[email protected]',
license = 'BSD-3-Clause',
packages = find_packages(),
install_requires = ['mne>=0.20', 'numpy>=1.15.4', 'scipy>=1.1.0'],
classifiers = [
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python :: 3',
]
)