This repository has been archived by the owner on Oct 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (39 loc) · 1.65 KB
/
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
45
46
47
48
49
[tool.poetry]
name = "depinspect"
version = "0.3.0"
description = "A tool that aggregates metadata from various Linux distributions, offering an abstraction layer which simplifies the retrieval of package-related information."
license = "MIT"
authors = ["Artem Burashnikov <artem.burashnikov@gmail.com>"]
maintainers = ["Artem Burashnikov <artem.burashnikov@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
click = "^8.1.7"
tomli = { version = "^1.1.1", python = "<3.11" }
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
mypy = "^1.6.1"
pytest = "^7.4.2"
black = "^23.10.0"
ruff = "^0.1.1"
[tool.ruff]
# Python >= 3.10
target-version = "py310"
[tool.black]
line-length = 88
[[tool.mypy.overrides]]
module = "tomllib.*"
ignore_missing_imports = true
[tool.poetry.scripts]
depinspect = "depinspect.cli:depinspect"
[tool.depinspect.archives.ubuntu]
jammy.main.i386 = "http://archive.ubuntu.com/ubuntu/dists/jammy/main/binary-i386/Packages.xz"
jammy.main.amd64 = "http://archive.ubuntu.com/ubuntu/dists/jammy/main/binary-amd64/Packages.xz"
jammy.main.riscv64 = "http://ports.ubuntu.com/ubuntu-ports/dists/jammy/main/binary-riscv64/Packages.xz"
[tool.depinspect.archives.fedora]
f39.everything.i686 = "https://dl.fedoraproject.org/pub/fedora/linux/releases/39/Everything/x86_64/os/repodata/ac6fe73a5757a7eb49bed9103abf2336d7ad4c993811b74e3b66725d78a65f02-primary.sqlite.xz"
f39.koji.riscv64 = "http://fedora.riscv.rocks/repos/f39-build/102696/riscv64/repodata/27a359fb55ab9065e50b18df598d1132e9dbbf34c21249e2ba7b31d3d968bbde-primary.sqlite.bz2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"