-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup-complete.py
35 lines (32 loc) · 1.11 KB
/
setup-complete.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
import setuptools
VERSION = "0.9.9complete"
DESCRIPTION = "GUI for converting MEG data to BIDS format"
URL = "https://macquarie-meg-research.github.io/Biscuit/"
DOWNLOAD_URL = "https://github.com/Macquarie-MEG-Research/Biscuit"
LONG_DESCRIPTION = open('README.md').read()
setuptools.setup(
name="Biscuit",
version=VERSION,
author="Matt Sanderson",
author_email="[email protected]",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url=URL,
include_package_data=True,
download_url=DOWNLOAD_URL,
packages=setuptools.find_packages(),
install_requires=['numpy', 'scipy', 'matplotlib', 'pandas', 'Pygments',
'Pillow', 'mne>=0.17.0', 'requests', 'mne-bids>=0.10',
'bidshandler>=0.2.1'],
license="MIT",
platform="any",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points={
'console_scripts': ['Biscuit = Biscuit.__init__:run']
}
)