forked from abides-sim/abides
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 721 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 721 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
from setuptools import setup, find_packages
setup(name='abides',
version='1.0.0',
description='Agent-Based Interactive Discrete Event Simulation',
url='https://github.com/abides-sim/abides',
author='davebyrd',
author_email='dave@imtc.gatech.edu',
license='BSD 3-Clause License',
packages=find_packages(),
install_requires=[
'cycler',
'joblib',
'jsons',
'kiwisolver',
'matplotlib',
'numpy',
'pandas',
'pprofile',
'pyparsing',
'python-dateutil',
'pytz',
'scipy',
'seaborn',
'six',
'tqdm',
'psutil'
]
)