-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.cfg
56 lines (52 loc) · 1.41 KB
/
setup.cfg
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
56
[metadata]
name = localstack-extension-aws-replicator
version = 0.1.19
summary = LocalStack Extension: AWS replicator
description = Replicate AWS resources into your LocalStack instance
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
url = https://github.com/localstack/localstack-extensions/tree/main/aws-replicator
author = LocalStack Team
author_email = [email protected]
[options]
zip_safe = False
packages = find:
install_requires =
# TODO: currently requires a version pin, see note in auth_proxy.py
boto3>=1.26.151
# TODO: currently requires a version pin, see note in auth_proxy.py
botocore>=1.29.151
flask
localstack-client
xmltodict
# TODO: refactor the use of http2_server
hypercorn
h11
quart
# TODO: runtime dependencies below should be removed over time (required for some LS imports)
boto
cbor2
flask-cors
jsonpatch
moto
werkzeug
[options.extras_require]
test =
apispec
localstack-core
localstack-ext
openapi-spec-validator
pyproject-flake8
pytest
pytest-httpserver
rolo
[options.package_data]
aws_replicator =
**/*.html
**/*.js
**/*.png
[options.entry_points]
localstack.extensions =
aws-replicator = aws_replicator.server.extension:AwsReplicatorExtension
localstack.plugins.cli =
aws-replicator = aws_replicator.client.cli:AwsReplicatorPlugin