-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpyproject.toml
40 lines (36 loc) · 935 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
37
38
39
40
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "tftui"
version = "0.13.4"
description = "Terraform Textual User Interface"
authors = ["Ido Avraham"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/idoavrah/terraform-tui"
keywords = ["terraform", "tui"]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
packages = [
{ include = "tftui" },
]
include = ["tftui/ui.tcss"]
[tool.poetry.dependencies]
python = "^3.9"
textual = "^0.44.1"
posthog = "^3.1.0"
requests = "^2.31.0"
pyperclip = "^1.8.2"
[tool.poetry.scripts]
tftui = 'tftui.__main__:main'
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "v$version"
version_scheme = "pep440"
version_provider = "poetry"
update_changelog_on_bump = true
major_version_zero = true