-
Notifications
You must be signed in to change notification settings - Fork 219
/
requirements.txt
30 lines (28 loc) · 1.03 KB
/
requirements.txt
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
################################################################
#
# Python package requirements for FinanceOps:
# https://github.com/Hvass-Labs/FinanceOps
#
# If you are using Anaconda then you can install all required
# Python packages by running the following commands in a shell:
#
# conda create --name FinanceOps python=3
# source activate FinanceOps
# pip install -r requirements.txt
#
################################################################
numpy # Array-based computing.
scipy # Scientific computing.
pandas # Time-series computing.
matplotlib # Basic plotting.
seaborn # Extra plotting functions.
sklearn # Machine Learning.
requests # Download from the internet.
notebook # Jupyter Notebook.
ipywidgets # Interaction for Jupyter Notebook.
pygmo # Multi-objective optimization.
statsmodels # Statistical modelling.
simfin # Financial database.
numba # Numba Jit compiler.
investops # Investment tools.
################################################################