-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpyproject.toml
47 lines (40 loc) · 1.02 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
[project]
name = "cobang"
description = "QR code and barcode scanner for Linux desktop"
authors = [
{name = "Nguyễn Hồng Quân", email = "[email protected]"},
]
dependencies = [
"logbook<2.0.0,>=1.5.3",
"Pillow<11.0.0,>=10.1.0",
"requests<3.0.0,>=2.31.0",
"kiss-headers<3.0.0,>=2.3.1",
"brotlicffi>=1.1.0.0",
]
requires-python = ">=3.8,<4.0"
readme = "README.rst"
license = {text = "GPL-3.0-or-later"}
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/hongquan/CoBang"
repository = "https://github.com/hongquan/CoBang.git"
[project.scripts]
cobang = "cobang.__main__:main"
[tool.pdm.dev-dependencies]
dev = [
"pytest<8.0.0,>=7.2.0",
"BabelGladeExtractor<1.0.0,>=0.7.0",
"click<9.0.0,>=8.1.3",
"types-click<8.0.0,>=7.1.8",
"typed-ast<2.0.0,>=1.5.4",
]
[tool.pdm.build]
includes = []
[tool.ruff]
line-length = 120
[tool.ruff.lint]
ignore = [
"E402", # The way to use PyGobject requires to do something before import.
]
[tool.ruff.format]
quote-style = "single"