-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (53 loc) · 1.6 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (53 loc) · 1.6 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
[project]
name = "lazyblorg"
version = "2026.03.21.2"
description = "Blogging with Emacs Org-mode for very lazy people"
keywords= ["orgmode", "weblog", "homepage", "orgdown", "blog", "static website generator"]
authors = [{name="Karl Voit", email="tools@Karl-Voit.at"}]
license = "GPL-3.0-or-later"
readme = {text = """
Read https://github.com/novoid/lazyblorg/blob/master/README.org
""", content-type = "text/plain"}
#readme = { file = "README.org", content-type = "text/plain" }
requires-python = ">=3.13"
dependencies = [
"opencv-python>=4.12.0.88",
"orgformat>=2025.12.13.1",
"pypandoc>=1.16.2",
"werkzeug>=3.1.4",
]
# sequence along https://pypi.org/classifiers
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
]
[dependency-groups]
dev = [
"pytest>=7.0",
]
[tool.pytest.ini_options]
testpaths = ["lib/tests", "tests"]
python_files = ["*_test.py"]
pythonpath = [".", "lib"]
addopts = "--import-mode=importlib"
[project.urls]
Homepage = "https://github.com/novoid/lazyblorg"
Download = "https://github.com/novoid/lazyblorg/zipball/master"
[project.scripts]
guessfilename = "lazyblorg:main"
[[tool.uv.index]]
name = "lazyblorg"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true
[tool.setuptools.packages.find]
include = ["lazyblorg*"]
[build-system]
requires = ["setuptools>=78.1.0", "wheel>=0.45.1"]
build-backend = "setuptools.build_meta"
[tool.mypy]
strict = true
ignore_missing_imports = true