-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
52 lines (46 loc) · 1.02 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
50
51
52
[tool.poetry]
name = "confidential"
version = "2.6.2"
description = "Manage secrets in your projects using AWS Secrets Manager"
authors = [
"Daniel van Flymen <[email protected]>",
"Elliott Chartock <[email protected]>",
"Vageli Mouzakitis <[email protected]>",
"Diaphel Thompson <[email protected]>",
"Tacio Rocha <[email protected]>"
]
license = "MIT"
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
boto3 = "^1.7"
click = "8.1.7"
[tool.poetry.dev-dependencies]
black = "^24.1.1"
pytest = "^8.0.0"
pytest-mock = "^3.12.0"
moto = "^4.2.13"
PyYAML = "^6.0.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.plugins."console_scripts"]
"confidential" = "confidential.secrets_manager:decrypt_secret"
[tool.black]
line-length = 120
target-version = ['py36']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| __pycache__
| _build
| buck-out
| build
| dist
)/
'''