-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (50 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
55 lines (50 loc) · 1.08 KB
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
54
55
[build-system]
requires = ["setuptools", "wheel", "plux>=1.3.1"]
build-backend = "setuptools.build_meta"
[project]
name = "localstack-extensions-utils"
version = "0.1.1"
description = "Utility library for LocalStack Extensions"
readme = {file = "README.md", content-type = "text/markdown; charset=UTF-8"}
requires-python = ">=3.10"
authors = [
{ name = "LocalStack Team" }
]
keywords = ["LocalStack", "Extensions", "Utils"]
classifiers = []
dependencies = [
"h2",
"hpack",
"httpx",
"hyperframe",
"priority",
"requests",
"rolo",
"twisted",
]
[project.urls]
Homepage = "https://github.com/localstack/localstack-extensions"
[project.optional-dependencies]
dev = [
"boto3",
"build",
"jsonpatch",
"localstack",
"pytest",
"ruff",
]
test = [
"grpcio>=1.60.0",
"grpcio-tools>=1.60.0",
"jsonpatch",
"localstack",
"pytest>=7.0",
"pytest-timeout>=2.0",
]
[tool.setuptools.packages.find]
include = ["localstack_extensions*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
filterwarnings = [
"ignore::DeprecationWarning",
]