-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 757 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 757 Bytes
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
from setuptools import setup, find_packages
__author__ = 'Pedro Sequeira'
__email__ = 'pedrodbs@gmail.com'
setup(name='model-learning',
version='1.0',
description='Framework for learning PsychSim agent models from observation',
author='Pedro Sequeira',
author_email='pedrodbs@gmail.com',
url='https://github.com/usc-psychsim/model-learning',
packages=find_packages(),
scripts=[
],
install_requires=[
'psychsim',
'numpy',
'scipy',
'matplotlib',
'jsonpickle',
'scikit-learn',
'joblib',
'tqdm',
'pandas',
'plotly',
'kaleido'
],
zip_safe=True,
python_requires='>=3.8',
)