-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (49 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
57 lines (49 loc) · 1.44 KB
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
53
54
55
56
57
[project]
name = "ananta"
version = "1.4.1"
description = "A command-line tool to execute commands on multiple remote hosts"
authors = [
{name = "Chaiwat Suttipongsakul",email = "cwt@bashell.com"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"asyncssh (>=2.20.0,<3.0.0)",
"tomli (>=1.0.0,<3.0.0); python_version < '3.11'", # For Python 3.10
"urwid (>=2.1.2)"
]
[project.optional-dependencies]
speed = [
"uvloop (>=0.21.0,<0.23.0) ; sys_platform != \"win32\"",
"winloop (>=0.1.8,<0.4.0) ; sys_platform == \"win32\""
]
[tool.poetry]
homepage = "https://github.com/cwt/ananta"
repository = "https://github.com/cwt/ananta"
[tool.poetry.urls]
"Sourcehut Mirror" = "https://sr.ht/~cwt/ananta/"
[tool.poetry.scripts]
ananta = "ananta.ananta:run_cli"
[tool.poetry.group.dev.dependencies]
black = "^26.3.0"
pytest-asyncio = "^1.3.0"
tomli = {version = ">=1.0.0,<3.0.0", optional = true}
pytest = "^9.0.2"
pytest-cov = "^7.0.0"
mypy = "^1.19.0"
pytest-xdist = "^3.8.0"
ruff = "^0.15.0"
[[tool.mypy.overrides]]
module = "urwid"
ignore_missing_imports = true
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function"
filterwarnings = ["ignore::DeprecationWarning"]
markers = [
"tui: marks tests as related to the Text User Interface",
"config: marks tests as related to configuration"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"