-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
49 lines (42 loc) · 1.13 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
[tool.poetry]
name = "booty-cli"
version = "1.0.14"
description = "A language and command line utility for bootstrapping the setup of personal OS installs."
homepage = "https://github.com/naddeoa/booty"
repository = "https://github.com/naddeoa/booty"
keywords = ["bootstrap", "booty", "setup", "cli", "tool"]
authors = ["Anthony Naddeo <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "booty/**/*.py"},
{ include = "booty/**/*.lark"},
{ include = "booty/**/*.booty"}
]
[tool.poetry.scripts]
booty = "booty.cli:cli"
[tool.poetry.dependencies]
python = ">=3.9, <3.13"
lark = "^1.1.8"
click = "^8.1.7"
rich = "^13.7.0"
[tool.poetry.group.dev.dependencies]
pyright = "^1.1.338"
ruff = "^0.1.7"
pytest = "^7.4.3"
debugpy = "^1.8.0"
pyinstaller = "^6.3.0"
bump2version = "^1.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pyright]
typeCheckingMode = "strict"
reportMissingTypeStubs = false
reportMissingParameterType = false
reportMissingTypeArgumet = false
[tool.ruff]
line-length = 140
[tool.ruff.format]
quote-style = "double"
indent-style = "space"