This repository was archived by the owner on Jun 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathPipfile
53 lines (49 loc) · 1.41 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
47
48
49
50
51
52
53
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"
[scripts]
lint = "bash -c 'pipenv run lint-src && pipenv run lint-tests'"
lint-src = "pipenv run pylint idunn --disable='unspecified-encoding'"
lint-tests = """pipenv run pylint tests --disable='consider-using-with, \
import-outside-toplevel, \
line-too-long, \
protected-access, \
redefined-outer-name, \
unspecified-encoding, \
unused-argument, \
unused-import'"""
[dev-packages]
pytest = "*"
lovely-pytest-docker = "*"
freezegun = "*"
responses = "*"
black = "22.3.0"
respx = "*"
pylint = "*"
[packages]
fastapi="==0.78.*"
elasticsearch2 = ">=2.0.0,<3.0.0"
elasticsearch = "==7.16.3"
requests = "*"
tzwhere = "*"
babel = "*"
pybreaker = "*"
PyYAML = ">=5.2"
redis = "*"
python-redis-rate-limit = "*"
python-json-logger = "*"
gunicorn = "*"
uvicorn = {version = "*", extras = ["standard"]}
phonenumbers = "*"
deepmerge = "*"
prometheus-client = "*"
unidecode = "*"
httpx = ">=0.23.0"
geopy = "*"
py-mini-racer = "*"
geojson-pydantic = "*"
orjson = "*"
jellyfish = "*"
[requires]
python_version = "3.10"