forked from click-contrib/click_params
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (50 loc) · 1.39 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
[tool.poetry]
name = "click-params"
version = "0.4.1"
description = "A bunch of useful click parameter types"
authors = ["lewoudar <lewoudar@gmail.com>"]
license = "Apache-2.0"
readme = "README.md"
keywords = ["click", "params", "validators", "network", "cli"]
homepage = "https://click-params.readthedocs.io/en/stable"
repository = "https://github.com/click-contrib/click_params"
documentation = "https://click-params.readthedocs.io/en/stable"
classifiers = [
"Intended Audience :: Developers",
"Topic :: Terminals",
"Operating System :: OS Independent",
"Programming Language :: Python :: Implementation :: PyPy"
]
packages = [
{ include = "click_params" }
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/click-contrib/click_params/issues"
[tool.poetry.dependencies]
python = "^3.7"
click = ">=7.0, <9.0"
validators = "^0.20"
[tool.poetry.dev-dependencies]
pytest = "^7.0.0"
pytest-cov = "^4.0.0"
pytest-mock = "^3.10.0"
bandit = "^1.6.2"
flake8 = "^3.9"
nox = "^2022.8.7"
mkdocs-material = "^9.0.0"
pre-commit = "^2.17.0"
isort = "^5.10.1"
black = "^23.1.0"
safety = "^2.3.0"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--cov=click_params --cov-report html --cov-report xml"
[tool.isort]
line_length = 120
profile = "black"
[tool.black]
line-length = 120
skip-string-normalization = true
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"