-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 1.06 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
[project]
name = "recorder"
dynamic = ["version"]
description = "Html page for configuring DVB recordings."
authors = [{ name = "Franck Barbenoire", email = "fbarbenoire@gmail.com" }]
readme = "README.rst"
requires-python = ">=3.11"
dependencies = [
"aiohttp==3.12.13",
"aiohttp_babel @ git+https://github.com/tenproduct/aiohttp_babel.git@master",
"aiohttp-jinja2==1.6",
"aiohttp-session==2.12.1",
"aiohttp_session_flash @ git+https://github.com/franckinux/aiohttp_session_flash.git@master",
"aiosignal==1.4.0",
"Babel==2.17.0",
"cryptography==45.0.5",
"Jinja2==3.1.6",
"pytz==2025.2",
"speaklater==1.3",
"WTForms==3.2.1",
]
# license = "GPL-3.0-or-later"
keywords = ["multimedia", "DVB", "television"]
[project.urls]
Homepage = "https://github.com/franckinux/python3-recorder"
[build-system]
requires = ["flit_core >=3.9.0,<4"]
build-backend = "flit_core.buildapi"
[project.scripts]
recorder = "recorder.main:main"
[tool.mypy]
python_version = 3.11
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true