-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 933 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (35 loc) · 933 Bytes
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
[tool.poetry]
name = "bytecli"
version = "0.2.2"
description = "Bytesized Hosting CLI app to get information on your App Box"
authors = ["Allan <allanklp@gmail.com>"]
license = "MIT"
readme = "README.md"
packages = [{include = "bytecli"}]
homepage = "https://pypi.org/project/bytecli"
repository = "https://github.com/allankp/bytecli"
[tool.poetry.scripts]
bytecli = "bytecli.main:app"
[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.28.2"
rich = "^13.3.4"
typer = "^0.7.0"
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
isort = "^5.12.0"
commitizen = "^3.2.1"
pre-commit = "^3.3.1"
[tool.black]
line-length = 132
target-version = ['py310']
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "$version"
version_type = "pep440"
version_provider = "poetry"
update_changelog_on_bump = true
major_version_zero = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"