-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (35 loc) · 1.03 KB
/
pyproject.toml
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
[tool.poetry]
name = "cumulus-port"
version = "0.1.1"
description = "A python port of core cumulus functions"
authors = ["Rohan Weeden <[email protected]>"]
license = "APACHE-2"
readme = "README.md"
[build-system]
requires = ["poetry-core>=1.2.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dependencies]
python = ">=3.9"
# Required
jsonpath-ng = "^1.4.0"
# Optional
boto3 = { version = "^1.0.0", optional = true }
botocore = { version = "*", optional = true }
cryptography = { version = ">=35.0.0", optional = true }
pyjwt = { version = "^2.0.0", optional = true }
requests = { version = "^2.4.2", optional = true }
[tool.poetry.extras]
all = ["boto3", "botocore", "cryptography", "pyjwt", "requests"]
auth = ["boto3", "botocore", "cryptography", "pyjwt", "requests"]
[tool.poetry.group.dev.dependencies]
moto = "^5.0.18"
pytest = "^8.0.2"
pytest-cov = "^4.0.0"
pytest-mock = "^3.14.0"
[tool.pytest.ini_options]
pythonpath="."
markers = [
"auth: requires the 'auth' extra to be installed",
]
[tool.isort]
profile = "black"