-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (33 loc) · 1.11 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
[tool.poetry]
name = "lnkshrt-cli"
version = "0.1.0"
description = "lnkshrt-cli is a command-line interface (CLI) tool for interacting with the lnkshrt link shortening API. It provides a convenient way to manage and utilize the features of the lnkshrt API directly from the command line."
authors = ["vivekashok1221 <vivekashok1221@gmail.com>"]
license = "MIT License"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
typer = {extras = ["all"], version = "^0.9.0"}
loguru = "^0.7.0"
httpx = "^0.24.1"
tomlkit = "^0.11.8"
qrcode = "^7.4.2"
[tool.poetry.scripts]
lnkshrt = "lnkshrt_cli.main:app"
[tool.poetry.group.dev.dependencies]
taskipy = "^1.11.0"
pre-commit = "^3.3.3"
black = "^23.3.0"
pyright = "^1.1.316"
[tool.isort]
profile = "black"
line_length = 100
[tool.black]
line-length = 100
[tool.taskipy.tasks]
precommit = { cmd = "pre-commit install", help="Installs pre-commit hooks."}
lint = { cmd = "pre-commit run --all-files", help = "Lints project." }
format = { cmd = "black .", help = "Runs Black autoformatter." }
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"