Skip to content

Commit 7b52e4b

Browse files
lucasmcdonald3josecorella
authored andcommitted
m
1 parent 893b4f9 commit 7b52e4b

File tree

88 files changed

+10048
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+10048
-0
lines changed

TestVectors/runtimes/python/poetry.lock

Lines changed: 462 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
[tool.poetry]
2+
name = "aws-encryption-sdk-test-vectors"
3+
version = "0.1.0"
4+
description = ""
5+
authors = ["AWS Crypto Tools <[email protected]>"]
6+
packages = [
7+
{ include = "aws_encryption_sdk_test_vectors", from = "src" }
8+
]
9+
# Include generated internaldafny files in package distributions,
10+
# even though they are not included in version control
11+
include = ["**/internaldafny/generated/*.py"]
12+
13+
[tool.poetry.dependencies]
14+
python = "^3.11.0"
15+
aws-cryptographic-material-providers = { path = "../../../mpl/AwsCryptographicMaterialProviders/runtimes/python", develop = false}
16+
aws-cryptography-internal-mpl-testvectors = { path = "../../../mpl/TestVectorsAwsCryptographicMaterialProviders/runtimes/python", develop = false}
17+
aws-encryption-sdk = { path = "../../../AwsEncryptionSDK/runtimes/python", develop = false}
18+
19+
[tool.poetry.group.test.dependencies]
20+
pytest = "^7.4.0"
21+
22+
[build-system]
23+
requires = ["poetry-core"]
24+
build-backend = "poetry.core.masonry.api"
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
# Initialize generated Dafny
5+
from .internaldafny.generated import module_
6+
7+
# Initialize externs
8+
from .internaldafny import extern
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from . import (
2+
wrapped_esdk,
3+
)

0 commit comments

Comments
 (0)