-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (44 loc) · 1.22 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
50
51
52
[tool.poetry]
name = "antur"
version = "0.3.1"
description = "Antur is a Python TUI tool for browsing and debugging sitemap data."
license = "MIT"
authors = ["Joe Banks <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/jb3/antur"
repository = "https://github.com/jb3/antur"
keywords = ["sitemap", "xml", "tui", "cli", "debugging", "browser"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
"Topic :: Internet :: WWW/HTTP :: Site Management",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = "^3.12"
textual = "^0.71.0"
aiohttp = "^3.9.5"
humanize = "^4.10.0"
lxml = "^5.2.1"
[tool.poetry.group.dev.dependencies]
textual-dev = "^1.5.1"
ruff = "^0.5.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
antur = "antur.__main__:main"
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["ALL"]
ignore = ["D203", "D212"]
[tool.ruff.lint.isort]
order-by-type = false
case-sensitive = true
combine-as-imports = true