-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpyproject.toml
36 lines (33 loc) · 1.55 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
[tool.poetry]
# Note: We should not release this library with this name.
# We should release this library under the name `aws-encryption-sdk`.
# But this repo's TestVectors test the released, native version of the ESDK,
# which has this name.
# The names conflict, and issues arise from this.
# When we are ready to release the Dafny-Python ESDK, we should rename this,
# but figure out if/how we can still test the native ESDK in this repo.
name = "aws-encryption-sdk-dafny"
version = "0.1.0"
description = ""
authors = ["AWS Crypto Tools <[email protected]>"]
# Note: We should not release this library with this package name.
# We should release this library with the package name `aws_encryption_sdk`.
# But this repo's TestVectors test the released, native version of the ESDK,
# which has this name.
# The names conflict, and issues arise from this.
# When we are ready to release the Dafny-Python ESDK, we should rename this,
# but figure out if/how we can still test the native ESDK in this repo.
packages = [
{ include = "aws_encryption_sdk_dafny", from = "src" }
]
# Include generated internaldafny files in package distributions,
# even though they are not included in version control
include = ["**/internaldafny/generated/*.py"]
[tool.poetry.dependencies]
python = "^3.11.0"
aws-cryptographic-material-providers = { path = "../../../mpl/AwsCryptographicMaterialProviders/runtimes/python", develop = false}
[tool.poetry.group.test.dependencies]
pytest = "^7.4.0"
[build-system]
requires = ["poetry-core<2.0.0"]
build-backend = "poetry.core.masonry.api"