-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
65 lines (58 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[tool.poetry]
name = "leverage"
version = "0.0.0"
description = "Binbash Leverage Command-Line tool."
authors = ["BinBash Inc <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/binbashar/leverage"
repository = "https://github.com/binbashar/leverage"
documentation = "https://leverage.binbash.co/"
keywords = ["leverage", "binbash"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
packages = [
{ include = "leverage" },
{ include = "leverage/modules" },
{ include = "leverage/containers" }
]
[tool.poetry.dependencies]
python = "~3.9 || ~3.10 || ~3.11 || ~3.12"
click = "8.0.1"
yaenv = "1.5.3post1"
"ruamel.yaml" = "0.17.10"
jinja2 = "3.0.1"
docker = "6.1.0"
dockerpty = "0.4.1"
questionary = "1.10.0"
python-hcl2 = "5.1.1"
boto3 = "1.33.2"
configupdater = "3.2"
docutils = "0.17.1"
rich = "10.4.0"
requests = "2.31"
[tool.poetry.group.dev.dependencies]
pylint = "2.8.3"
pytest = "8.3.3"
pytest-cov = "6.0.0"
twine = "3.4.1"
black = "23.3.0"
pre-commit = "3.5.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
leverage = "leverage:leverage"
[tool.black]
line-length = 120
extend-exclude = """
simple_build_bad_syntax.py
"""