-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
35 lines (30 loc) · 934 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
[tool.poetry]
name = "boinc-client"
version = "1.12.1"
description = "Python API for interacting with a BOINC client via RPC"
authors = ["Lewis England <lewis2004@hotmail.com>"]
readme = "README.md"
[tool.poetry.urls]
homepage = "https://github.com/SplinterHead/boinc-client"
issues = "https://github.com/SplinterHead/boinc-client/issues"
[tool.poetry.dependencies]
python = "^3.9"
lxml = ">=4.9.2,<6.0.0"
marshmallow = "^3.19.0"
xmltodict = "^0.13.0"
[tool.poetry.group.dev.dependencies]
black = ">=22.12,<25.0"
isort = "^5.11.4"
pytest = ">=7.2.1,<9.0.0"
pytest-cov = "^4.0.0"
pytest-mock = "^3.10.0"
testcontainers-core = "^0.0.1rc1"
xmlformatter = "^0.2.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
markers = [
"authenticated: Tests that require a form of credential",
"integration: Integration tests that run against a containerised BOINC client"
]