forked from aws-solutions/amazon-s3-glacier-refreezer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (44 loc) · 1.2 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
37
38
39
40
41
42
43
44
45
46
47
48
49
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "source"}
[project]
name = "refreezer"
version = "2.0.0a0"
description = "S3 Glacier Vault to Bucket ReFreezer on AWS"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "Apache Software License"}
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Framework :: AWS CDK :: 2",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Typing :: Typed",
]
dependencies = [
"boto3",
"aws-cdk-lib==2.60.0",
"constructs>=10.0.0,<11.0.0",
"cdk-nag",
]
[project.scripts]
cdk-app = "refreezer.app:main"
[project.optional-dependencies]
dev = [
"tox",
"pytest",
"pytest-cov",
"cdk-nag",
"boto3-stubs-lite[essential]",
"boto3-stubs-lite[cloudformation]",
"boto3-stubs-lite[sns]",
"boto3-stubs-lite[s3]",
"boto3-stubs-lite[stepfunctions]",
]