-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPipfile
More file actions
32 lines (28 loc) · 779 Bytes
/
Pipfile
File metadata and controls
32 lines (28 loc) · 779 Bytes
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
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[scripts]
build = "sam build"
deploy = "sam deploy"
test = "pytest --cov --cov-branch --cov-report=term-missing tests/unit/"
test-report = "pytest --cov --cov-branch --cov-report=term-missing --cov-report=xml tests/unit/"
test-integration = "pytest --cov --cov-branch --cov-report=term-missing"
convert-docs = "sphinx-apidoc -f -o docs-src/ src/"
build-docs = "sphinx-build -b html docs-src/ docs/"
[packages]
boto3 = "~=1.19"
[dev-packages]
boto3 = "~=1.26"
pyyaml = ">=6.0.3"
pytest = ">=9.0"
pytest-mock = ">=3.14"
requests = "~=2.32.5"
pytest-cov = "~=4.0.0"
moto = "~=5.1.0"
sphinx = "*"
sphinx-rtd-theme = "*"
pyopenssl = "~=25.3.0"
aws-sam-cli = "~=1.151.0"
[requires]
python_version = "3.14"