-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (38 loc) · 986 Bytes
/
pyproject.toml
File metadata and controls
45 lines (38 loc) · 986 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
33
34
35
36
37
38
39
40
41
42
43
44
45
# general build configuration
[build-system]
requires = ['setuptools>65', 'wheel', 'plux>=1.10', "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "localstack-extension-aws-proxy"
readme = "README.md"
version = "0.2.4"
description = "LocalStack extension that proxies AWS resources into your LocalStack instance"
authors = [
{ name = "LocalStack Team", email = "info@localstack.cloud"}
]
dependencies = [
"localstack"
]
[project.optional-dependencies]
test=[
# couple of dependencies required to import localstack test tools
"localstack-core[base-runtime]>4.9",
"moto-ext",
"quart",
# pytest and other test utils
"hypercorn",
"pytest",
"pytest-httpserver",
"ruff",
# build tools
"build",
"setuptools",
"setuptools_scm",
"wheel"
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["aws_proxy*"]
[tool.setuptools.package-data]
"*" = ["static/*"]