Skip to content

Commit 26e37b3

Browse files
committed
Poetry: Add config
1 parent 0ced160 commit 26e37b3

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

pyproject.toml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,38 @@
11
[tool.black]
22
skip-string-normalization = true
3+
4+
[tool.poetry]
5+
name = "libtmux"
6+
version = "0.8.2"
7+
description = "scripting library / orm for tmux"
8+
license = "MIT"
9+
authors = ["Tony Narlock <tony@git-pull.com>"]
10+
11+
[tool.poetry.dependencies]
12+
python = "~2.7 || ^3.5"
13+
14+
[tool.poetry.dev-dependencies]
15+
alagitpull = "*"
16+
black = {version="==19.10b0", python="^3.6"}
17+
doc8 = "*"
18+
docutils = "*"
19+
flake8 = "*"
20+
isort = "*"
21+
pytest = [
22+
{version="<4.7.0", python="<3"},
23+
{version="*", python=">=3"}
24+
]
25+
pathlib2 = {version="<2.3.5", python="<3"} # Untangle pytest peer-dependency
26+
pytest-rerunfailures = "*"
27+
sphinx = [
28+
{version="<2", python="<3"},
29+
{version="*", python=">=3"}
30+
]
31+
sphinx-issues = "*"
32+
twine = "*"
33+
codecov = "*"
34+
coverage = "*"
35+
pytest-cov = [
36+
{version="<2.10.0", python="<3"},
37+
{version="*", python=">=3"}
38+
]

0 commit comments

Comments
 (0)