forked from CYHSM/DeepInsight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 939 Bytes
/
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
"""
DeepInsight Toolbox
© Markus Frey
https://github.com/CYHSM/DeepInsight
Licensed under MIT License
"""
from setuptools import setup
long_description = open('README.md').read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name='deepinsight',
version='0.5',
install_requires=requirements,
author='Markus Frey',
author_email='[email protected]',
description="A general framework for interpreting wide-band neural activity",
long_description=long_description,
url='https://github.com/CYHSM/DeepInsight/',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
)