-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
66 lines (55 loc) · 1.58 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[tool.poetry]
name = "runcommands"
version = "1.0a72.dev0"
license = "MIT"
description = "A framework for writing console scripts and running commands"
readme = "README.rst"
authors = ["Wyatt Baldwin <self@wyattbaldwin.com>"]
homepage = "https://runcommands.readthedocs.io"
repository = "https://github.com/wylee/runcommands"
keywords = ["run", "commands", "console", "scripts", "terminal"]
packages = [
{ include = "runcommands", from = "src" }
]
include = [
"CHANGELOG.md",
"LICENSE",
"README.rst",
"commands.py",
"commands.toml",
"runcommands/completion/bash/*.fish",
"runcommands/completion/bash/*.rc",
]
[tool.poetry.dependencies]
python = "^3.7"
rich = ">=10"
toml = ">=0.10"
"com.wyattbaldwin.cached_property" = "^1.0"
[tool.poetry.group.dev.dependencies]
black = "*"
coverage = "*"
ruff = "*"
Sphinx = "*"
tox = "*"
twine = "*"
"com.wyattbaldwin.make_release" = { version = "*", allow-prereleases = true }
[tool.poetry.scripts]
run = "runcommands.__main__:main"
runcommand = "runcommands.__main__:main"
runcommands = "runcommands.__main__:main"
runcommands-complete = "runcommands.completion:complete.console_script"
runcommands-complete-base-command = "runcommands.completion:complete_base_command.console_script"
[tool.black]
target-version = ["py36"]
[tool.make-release.args]
test-command = "run test"
[tool.ruff]
ignore = ["F722", "F821"]
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401"]
[tool.runcommands.globals]
package = "runcommands"
distribution = "{{ package }}"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"