-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 753 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 753 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
[tool.poetry]
name = "cdn-proxy"
version = "v0.2.0"
description = "Take advantage of IP whitelisting of shared CDNs."
authors = ["Ryan Gerstenkorn"]
license = "BSD-3"
[tool.poetry.scripts]
cdn-proxy = "cdn_proxy.__main__:main"
[tool.poetry.dependencies]
python = "^3.6.2"
botocore = "^1.21.25"
boto3 = "^1.18.25"
typer = "^0.3.2"
cloudflare = "^2.8.15"
requests = "^2.26.0"
urllib3 = "^1.26.7"
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
moto = {extras = ["lambda", "iam"], version = "^2.2.3"}
docker = "^5.0.0"
pylint = "^2.10.2"
mypy = "^0.910"
types-requests = "^2.25.9"
boto3-stubs = {extras = ["lambda", "cloudfront", "iam"], version = "^1.20.24"}
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"