-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
48 lines (42 loc) · 1.01 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
[tool.poetry]
name = "plz-cmd"
version = "1.2.2"
description = "command line app for running configurable shell commands"
readme = "README.md"
authors = ["Mike Brown <mike.brown@excella.com>"]
license = "MIT"
repository = "https://github.com/m3brown/plz"
packages = [
{include = "plz", from="."},
]
[tool.poetry.scripts]
plz = "plz.main:main"
[tool.poetry.dependencies]
python = "^3.6"
colorama = ">=0.4.0"
jsonschema = [
{version = "^3.2.0", python = "<3.7"},
{version = ">=4.2.0", python = ">=3.7"}
]
PyYAML = ">=3.0"
[tool.poetry.dev-dependencies]
pre-commit = [
{version = "^1.21", python = "<3.6.1"},
{version = "^2.17.0", python = ">=3.6.1"}
]
pytest = [
{version = ">=6.2.5", python = "<3.7"},
{version = ">=7.2.0", python = ">=3.7"}
]
coverage = [
{version = "^6.2.0", python= "<3.7"},
{version = ">=6.5.0", python= ">=3.7"}
]
[build-system]
requires = ["poetry>=1.1.13"]
build-backend = "poetry.masonry.api"
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.pycln]
all = true