forked from fernandobrito/investments-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPipfile
33 lines (29 loc) · 787 Bytes
/
Pipfile
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
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
fastapi = { extras = ["all"], version = "~= 0.68.1" }
google-cloud-firestore = "~= 2.3.0"
requests = "~= 2.26.0"
# 0.7.x requires itsdangerous>=2.0.1 which is not supported by fastapi
# Upcoming 0.8.x makes it optional
requests-cache = { extras = ["json"], ref = "master", git = "https://github.com/reclosedev/requests-cache.git" }
pandas = "~= 1.3.2"
scipy = "~= 1.7.1"
numpy = "~= 1.21.2"
plotly = "~= 5.2.1"
kaleido = "~= 0.2.1"
python-dotenv = "~= 0.19.0"
pydantic = "~= 1.8.2"
[dev-packages]
mypy = "~= 0.910"
types-requests = "~= 2.25.6"
flake8 = "~= 3.9.2"
black = "== 21.7b0"
pytest = "~= 6.2.4"
pytest-cov = '~= 2.12.1'
[requires]
python_version = "3.9"
[pipenv]
allow_prereleases = true