-
Notifications
You must be signed in to change notification settings - Fork 49
/
Pipfile
46 lines (43 loc) · 1.05 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
bitmath = "~=1.3"
certifi = "==2023.7.22"
# The latest connexion is 2.14.2 which requires Flask < 2.3.
# So the latest Flask we can install is 2.2.5. (If you install 2.3.0 you'll
# get `AttributeError: module 'flask.json' has no attribute 'JSONEncoder'`
# b/c Flask 2.3.0 removed JSONEncoder.
"connexion[swagger-ui]" = "~=2.14"
click = "~=8.1"
crate = "~=0.22"
flask = "==2.2.5"
geojson = "~=2.4"
geomet = "~=0.2"
gunicorn = "~=20.1"
pg8000 = "==1.23.0"
pickle-mixin = "==1.0.2"
pydantic = "~=1.10"
pymongo = "~=3.4"
python-dateutil = "~=2.8"
pyyaml = "~=6.0"
objsize = "~=0.3"
redis = "~=4.6"
requests = "~=2.31"
rq = "~=1.8"
geopy = "~=2.2.0"
[dev-packages]
# run `pipenv install --dev` to get the packages below in your env
aiohttp = "~=3.8"
backoff = "~=1.1"
matplotlib = "~=3.3"
pandas = "~=1.1"
pytest-lazy-fixture = "~=0.6.3"
pytest-flask = "~=1.2"
pytest = "~=5.0"
pytest-cov = "~=2.7.1"
coveralls = "~=2.0"
lovely-pytest-docker = "~=0.3.0"
[requires]
python_version = "3.8"