-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pipfile
41 lines (36 loc) · 886 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
34
35
36
37
38
39
40
41
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[[source]]
url = "https://test.pypi.org/simple/"
verify_ssl = true
name = "testpypi"
[scripts]
init = "pipenv sync"
init_dev = "pipenv sync --dev"
lint = "bash -c 'isort --check-only . && black --check . && flake8 . && pyright .'"
[packages]
asyncio = "==3.4.3"
boto3 = "==1.28.59"
[dev-packages]
black = "==22.12.0"
pytest = "==7.3.1"
flake8 = "==5.0.4"
isort = "==5.12.0"
bandit = "==1.7.5"
pytest-random-order = "==1.1.0"
pytest-mock = "==3.10.0"
pytest-cov = "==4.0.0"
pyright = "==1.1.305"
botocore-stubs = "==1.31.59"
boto3-stubs = {extras = ["sqs"], version = "==1.28.59"}
types-boto3 = "==1.0.2"
python-json-logger = "==2.0.7"
twine = "==4.0.2"
wheel = "==0.41.2"
setuptools-scm = "*"
fastapi = "==0.104.1"
uvicorn = {extras = ["standard"], version = "==0.24.0"}
[requires]
python_version = "3.10"