-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
48 lines (42 loc) · 1.19 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
[tool.poetry]
name = "docopt-sh"
description = "Command-line argument parser for bash 3.2, 4+, and 5+."
version = "0.0.0-dev"
authors = ["Anders Ingemann <[email protected]>"]
license = "MIT"
readme = "docs/README.pypi.md"
homepage = "https://github.com/andsens/docopt.sh"
repository = "https://github.com/andsens/docopt.sh"
classifiers = [
"Topic :: Utilities",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
]
packages = [{ include = "docopt_sh" }]
[tool.pylint.'MESSAGES CONTROL']
indent-string = " "
disable = [
"missing-function-docstring",
"missing-class-docstring",
]
[tool.flake8]
max-line-length = 120
ignore = "E111,E114,E121,W503,E302,E303,E305"
[tool.poetry.dependencies]
python = ">=3.11.0,<4.0"
docopt = "^0.6.2"
termcolor = "^1.1.0"
docopt-parser = ">=0.0.1"
flake8-pyproject = "^1.1.0.post0"
[tool.poetry.dev-dependencies]
flake8 = "^6.0.0"
pytest = "^7.2.0"
pytest-xdist = "^2.5.0"
pytest-flake8 = "^1.1.1"
[tool.poetry.scripts]
"docopt.sh" = "docopt_sh.__main__:main"
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"