-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 952 Bytes
/
pyproject.toml
File metadata and controls
42 lines (36 loc) · 952 Bytes
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
[tool.poetry]
name = "snap-http"
version = "1.12.0"
description = "A library for interacting with snapd via its REST API."
authors = ["Mitch Burton <mitch.burton@canonical.com>", "Stephen Mwangi <mail@stephenmwangi.com>"]
readme = "README.md"
exclude = [
"tests/"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: POSIX :: Linux",
]
[tool.poetry.dependencies]
python = ">=3.8"
[tool.poetry.group.test.dependencies]
pytest = "^8.3.5"
pytest-cov = "^5.0.0"
pyyaml = "^6.0"
tox = "^4.25.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.14.14"
mypy = "^1.14.1"
[tool.ruff]
exclude = [
".tox",
"snap_http/__init__.py",
"snap_http/api/__init__.py",
]
[tool.ruff.lint.mccabe]
max-complexity = 10
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"