-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
34 lines (31 loc) · 1.37 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
from setuptools import setup, find_packages
import numpy as np
import os
package_data = {'ADMCode':['notebooks/*.ipynb', 'notebooks/images/*.png', 'notebooks/images/*.mp4', 'data/*.csv']}
major = 0
minor = 5
patch = 2
__version__ = '.'.join([str(v) for v in [major, minor, patch]])
setup(
name='ADMCode',
version=__version__,
author='Kyle Dunovan, Timothy Verstynen',
author_email='[email protected]',
url='http://github.com/CoAxLab/AdaptiveDecisionMaking_2018',
packages=['ADMCode', 'ADMCode.snuz', 'ADMCode.snuz.ars', 'ADMCode.snuz.ppo', 'ADMCode.snuz.ppo.agents'],
package_data=package_data,
description='Code and lab resources for Neural and Cognitive Models of Adaptive Decision Making course (2018)',
install_requires=['numpy', 'scipy', 'pandas', 'matplotlib', 'seaborn', 'scikit-learn', 'numba', 'future'],
include_dirs = [np.get_include()],
classifiers=[
'Environment :: Console',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering',
]
)