-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (36 loc) · 1.42 KB
/
setup.py
File metadata and controls
38 lines (36 loc) · 1.42 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
33
34
35
36
37
38
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='meet',
version='2024.05.06',
description='Modular EEg Toolkit (MEET)',
author='Gunnar Waterstraat',
author_email='gunnar.waterstraat@charite.de',
url='https://github.com/neurophysics/meet',
packages=['meet'],
package_data={'meet': [
'plotting_1005.txt', 'test_data/elecnames.txt',
'test_data/sample.dat']},
install_requires=["numpy","scipy","matplotlib"],
setup_requires=["numpy"],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Framework :: IPython',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Environment :: Web Environment',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Python Software Foundation License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
]
)