-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (72 loc) · 1.94 KB
/
Copy pathpyproject.toml
File metadata and controls
83 lines (72 loc) · 1.94 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "odl-renderer"
version = "0.5.12"
description = "Pure image rendering from drawing instructions for e-paper displays"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "Apache-2.0"}
authors = [
{name = "g4bri3lDev", email = "admin@g4bri3l.de"}
]
keywords = ["e-paper", "eink", "image", "rendering", "odl", "opendisplay", "open-display-language"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"Pillow>=12.0.0",
"qrcode[pil]>=7.4.2",
"aiohttp>=3.13.4",
"resize-image>=0.4.0"
]
[project.optional-dependencies]
visual = [
"syrupy>=5.1.0",
"imagehash>=4.3.2"
]
property = [
"hypothesis>=6.151.12"
]
[project.urls]
Homepage = "https://github.com/g4bri3lDev/odl-renderer"
Repository = "https://github.com/g4bri3lDev/odl-renderer"
Issues = "https://github.com/g4bri3lDev/odl-renderer/issues"
Documentation = "https://opendisplay.org/protocol/open-display-language.html"
[tool.hatch.build.targets.wheel]
packages = ["src/odl_renderer"]
[tool.ruff]
line-length = 120
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
[tool.mypy]
python_version = "3.11"
strict = true
warn_return_any = true
warn_unused_configs = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[dependency-groups]
dev = [
"mypy>=1.20.0",
"ruff>=0.15.10",
"prek>=0.3.4",
{ include-group = "test" },
]
test = [
"pytest>=9.0.3",
"pytest-asyncio>=1.3.0",
"pytest-cov>=7.1.0",
"pytest-xdist>=3.8.0",
"time-machine>=2.9.0",
]