-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
33 lines (31 loc) · 1.29 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
#! /usr/bin/env python
from setuptools import setup
import codecs
import os
if __name__ == "__main__":
if os.path.exists('MANIFEST'):
os.remove('MANIFEST')
setup(
name='conpy',
maintainer='Marijn van Vliet',
maintainer_email='[email protected]',
description='Functions and classes for performing connectivity analysis on MEG data.',
license='BSD-3',
url='https://github.com/aaltoimaginglanguage/conpy',
version='1.3.1',
download_url='https://github.com/aaltoimaginglanguage/conpy/archive/master.zip',
long_description=codecs.open('README.md', encoding='utf8').read(),
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'],
platforms='any',
packages=['conpy'],
install_requires=['numpy', 'scipy', 'mne'],
)