forked from LBHB/NEMS0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (35 loc) · 1.12 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
import codecs
import os.path
from setuptools import find_packages, setup
NAME = 'NEMS'
VERSION = '0.0.1a'
with codecs.open('README.md', encoding='utf-8') as f:
long_description = f.read()
GENERAL_REQUIRES = ['numpy', 'scipy', 'matplotlib', 'pandas', 'requests',
'h5py']
setup(
name=NAME,
version=VERSION,
packages=find_packages(exclude=['tests']),
include_package_data=True,
zip_safe=True,
author='LBHB',
author_email='lbhb.ohsu@gmail.com',
description='Neural Encoding Model System',
long_description=long_description,
url='http://neuralprediction.org',
install_requires=GENERAL_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'
],
}
)