-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (29 loc) · 834 Bytes
/
pyproject.toml
File metadata and controls
35 lines (29 loc) · 834 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
#
# SPDX-FileCopyrightText: The LineageOS Project
# SPDX-License-Identifier: LGPL-3.0-or-later
#
[tool.poetry]
name = "liblineage"
version = "1.6.1"
description = "LineageOS utils library"
authors = ["Sebastiano Barezzi <seba@sebaubuntu.dev>"]
license = "LGPL-3.0-or-later"
readme = "README.md"
repository = "https://github.com/sebaubuntu-python/liblineage"
[tool.poetry.dependencies]
python = "^3.9"
sebaubuntu-libs = "^2.0.0"
requests = "^2.32.5"
pyyaml = "^6.0"
aiohttp = "^3.8.4"
sphinx = { version = ">=5.0.1,<8.0.0", optional = true }
sphinx-rtd-theme = { version = ">=1,<4", optional = true }
[tool.poetry.extras]
docs = ["sphinx", "sphinx-rtd-theme"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 100
[tool.ruff.format]
docstring-code-format = true