-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (46 loc) · 1.25 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 = "croudtech-bootstrap"
version = "0.0.0"
description = "Applicaton config via AWS S3 and AWS Secrets Manager"
authors = ["Jim Robinson <jscrobinson@gmail.com>"]
license = "mit"
readme = "README.md"
packages = [
{ include = "croudtech_bootstrap_app" }
]
[tool.poetry.scripts]
croudtech-bootstrap = 'croudtech_bootstrap_app.cli:cli'
[tool.poetry.dependencies]
python = "<3.14,>=3.9"
boto3 = "^1.35.41"
click = "^8.1.7"
table2ascii = "^1.1.3"
pyyaml = "^6.0.2"
redis = "5.0.4"
[tool.poetry.group.dev.dependencies]
boto3-stubs = {extras = ["s3", "secretsmanager"], version = "^1.35.41"}
types-pyyaml = "^6.0.12.20240917"
autopep8 = "2.1.0"
black = "24.4.0"
flake8 = "7.0.0"
flake8-bugbear = "24.4.21"
isort = "5.13.2"
pytest = "8.1.1"
pytest-cov = "5.0.0"
pytest-mock = "3.14.0"
pytest-xdist = "3.5.0"
pre-commit = "^4.0.1"
pyinstaller = "^6.11.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry-pyinstaller-plugin]
version = "6.7.0"
disable-upx = true
recursive-copy-metadata = []
copy-metadata = [
"table2ascii"
]
use-poetry-install = true
[tool.poetry-pyinstaller-plugin.scripts]
croudtech-boostrap = { source = "croudtech_bootstrap_app/croudtech-bootstrap.py", type = "onefile", bundle = true}