-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (28 loc) · 970 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
33
34
import codecs
import os.path
from setuptools import find_packages, setup
NAME = 'NEMS_WEB'
version = 'pre-alpha'
with codecs.open('README.md', encoding='utf-8') as f:
long_description = f.read()
GENERAL_REQUIRES = [
'numpy', 'scipy', 'matplotlib', 'flask', 'sqlalchemy', 'mpld3',
'boto3', 'tensorflow', 'bokeh', 'flask-socketio', 'eventlet', 'bcrypt',
'flask-WTF', 'flask-login', 'flask-bcrypt', 'seaborn', 'flask-assets',
'pymysql', 'gevent',
]
# Additional dependency: NEMS (https://bitbucket.org/lbhb/nems)
setup(
name=NAME,
version=version,
packages=find_packages(exclude=['tests']),
include_package_data=True,
zip_safe=True,
author='LBHB',
author_email='[email protected]',
description='Web Application for the Neural Encoding Model System',
long_description=long_description,
url='http://neuralprediction.org',
install_requires=GENERAL_REQUIRES,
classifiers=[],
)