-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
36 lines (30 loc) · 915 Bytes
/
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
[tool.poetry]
name = "tentakel"
version = "4.0.3"
description = "distributed command execution"
license = "BSD"
homepage = "https://github.com/sfermigier/tentakel"
authors = [
"Sebastian Stark, Marlon Berlin <[email protected], [email protected]>",
"Stefane Fermigier <[email protected]>",
]
maintainers = [
"Stefane Fermigier <[email protected]>",
]
readme = "README.md"
packages = [{ include = "tentakel", from = "src" }]
[tool.poetry.scripts]
tentakel = 'tentakel.main:main'
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.dev-dependencies]
#pytest = "^7.4.0"
abilian-devtools = "^0.5.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
exclude = ["src/tentakel/tpg.py"]
[tool.pyright]
exclude = ['.nox', 'tests', 'sandbox', 'doc', 'scripts', 'tmp', "src/tentakel/tpg.py", "src/tentakel/plugins/rsh.py"]
include = ["src"]