forked from BrainModes/sim2bids
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 1.39 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
37
38
#!/usr/bin/env python
"""The setup script."""
from setuptools import setup
requirements = ['numpy', 'pandas', 'h5py', 'panel~=0.13.1', 'holoviews', 'param~=1.12.0',
'graphviz', 'mat73', 'pylems', 'scipy', 'comp_validator']
test_requirements = ['pytest>=3']
setup(
name='sim2bids',
version='2.0.1',
description="App to preprocess and convert simulation data",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Dinara Issagaliyeva",
author_email='[email protected]',
python_requires='>=3.6',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Operating System :: Microsoft :: Windows :: Windows 11',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
],
install_requires=requirements,
license="MIT license",
# long_description=readme + '\n\n' + history,
include_package_data=True,
keywords=['simulations', 'computational data', 'BIDS'],
packages=['sim2bids', 'sim2bids.app', 'sim2bids.convert', 'sim2bids.generate', 'sim2bids.preprocess',
'sim2bids.templates', 'sim2bids.validate'],
package_data={'sim2bids': ['generate/models/*.xml']},
# package_dir={'sim2bids': 'src/sim2bids'},
url='https://github.com/dissagaliyeva/sim2bids',
zip_safe=False,
)