-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
44 lines (37 loc) · 905 Bytes
/
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
[tool.poetry]
name = "pseud"
version = "2.0.0dev"
description = "Bidirectionnal RPC Api on top of pyzmq"
authors = ["Nicolas Delaby <[email protected]>"]
license = "Apache Software License"
repository = "https://github.com/ticosax/pseud"
readme = "README.rst"
[tool.poetry.group.main.dependencies]
python = ">=3.9"
pyzmq = "*"
msgpack-python = "*"
"zope.component" = "*"
[tool.poetry.group.dev.dependencies]
pytest = "*"
pytest-asyncio = "*"
tox = "*"
pytest-cov = "*"
pdbpp = "*"
black = "*"
tox-pyenv = "*"
ruff = "*"
[tool.black]
line-length = 89
skip-string-normalization = true
exclude = "docs/source/conf.py|.tox/|.git/|dist/.pytest_cache/|setup.py"
[tool.isort]
profile = "black"
line_length = 89
[tool.ruff]
line-length = 89
target-version = "py39"
select = ["E", "F", "B", "UP", "I"]
[tool.pytest.ini_options]
[build-system]
requires = ["poetry>=1.0.0"]
build-backend = "poetry.masonry.api"