-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
42 lines (32 loc) · 1.59 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
[tool.poetry]
name = "balcony"
version = "0.3.2"
description = "Read any resource in your AWS Account. You can generate terraform code for them, too."
authors = ["Oguzhan Yilmaz <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
[tool.poetry.scripts]
balcony = "balcony.cli:run_app"
[tool.poetry.dependencies]
python = "^3.9"
typer = "^0.7.0"
rich = "^13.3.4"
boto3 = "^1.24.80"
jmespath = "^1.0.1"
inflect = "^6.0.0"
mkdocstrings = {version = "^0.21.2", extras = ["python"]}
mkdocs-material = ">=8.5.7,<10.0.0"
mkdocs-autorefs = "^0.4.1"
PyYAML = "^6.0"
pydantic = "^1.10.7"
Jinja2 = "^3.1.2"
aws-jmespath-utils = "^1.1.0"
[tool.poetry.group.dev.dependencies]
[tool.poetry.urls]
"Github" = "https://github.com/oguzhan-yilmaz/balcony"
"Documentation" = "https://oguzhan-yilmaz.github.io/balcony/"
"Releases" = "https://github.com/oguzhan-yilmaz/balcony/releases"
"aws-jmespath-utils Github" = "https://github.com/oguzhan-yilmaz/aws-jmespath-utils"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"