-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
36 lines (31 loc) · 1002 Bytes
/
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]
name = "ecs_connect_cli"
version = "0.0.0"
description = "AWS ECS Cli tool for connecting to ecs container and update secret manager"
authors = ["Frederic Egmorte <[email protected]>"]
license = "MIT License"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
repository = "https://github.com/fegmorte/aws-ecs-exec-command-cli"
[tool.poetry.scripts]
ecs-connect-cli = "ecs_connect_cli.cli:app"
[tool.poetry.dependencies]
python = "^3.9"
boto3 = "^1.26.13"
typer = {version = "^0.9.0", extras = ["all"]}
pytest = "^6.2.4"
echoprompt = "^0.2.0"
deepdiff = "^6.7.1"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
pattern = "^((?P<epoch>\\d+)!)?(?P<base>\\d+(\\.\\d+)*)"
latest-tag = true
strict = true
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"