-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
51 lines (45 loc) · 1.55 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
39
40
41
42
43
44
45
46
47
48
49
50
51
import codecs
import os.path
from setuptools import find_packages, setup
NAME = 'NEMS0'
VERSION = '0.1.0'
with codecs.open('README.rst', encoding='utf-8') as f:
long_description = f.read()
GENERAL_REQUIRES = ['numpy', 'scipy', 'matplotlib', 'pandas', 'requests',
'h5py', 'sqlalchemy', 'configparser','jupyterlab','tensorflow==2.2','tornado',
'PyQt5', 'pyqtgraph']
# matplotlib qtAgg requires PyQt
EXTRAS_REQUIRES = {
'docs': ['sphinx', 'sphinx_rtd_theme', 'pygments-enaml', 'nbsphinx', 'pandoc', 'IPython',
'sphinx_copybutton'],
'nwb': ['allensdk'],
'tensorflow': ['tensorboard'],
'tests': ['pytest', 'pytest-benchmark'],
}
setup(
name=NAME,
version=VERSION,
packages=find_packages(exclude=['tests']),
include_package_data=True,
zip_safe=True,
author='LBHB',
author_email='[email protected]',
description='Neural Encoding Model System',
long_description=long_description,
url='http://neuralprediction.org',
install_requires=GENERAL_REQUIRES,
extras_require=EXTRAS_REQUIRES,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
entry_points={
'console_scripts': [
'fit-model=scripts.fit_model:main',
'download-demo-data=scripts.download_demo_data:main'
],
}
)