-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (64 loc) · 1.57 KB
/
pyproject.toml
File metadata and controls
76 lines (64 loc) · 1.57 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "reeln"
dynamic = ["version"]
description = "Platform-agnostic CLI toolkit for livestreamers"
readme = "README.md"
license = "AGPL-3.0-only"
requires-python = ">=3.11"
dependencies = [
"typer>=0.12.3",
"filelock>=3.0",
"reeln-native>=0.2.3,<1.0",
]
[project.optional-dependencies]
interactive = [
"questionary>=2.0.1",
]
dev = [
"pytest",
"pytest-cov",
"pytest-xdist",
"ruff",
"mypy",
"questionary>=2.0.1",
]
docs = [
"sphinx>=7.0",
"myst-parser>=3.0",
"furo>=2024.1",
"sphinx-copybutton>=0.5",
]
[project.urls]
Homepage = "https://streamn.dad"
Documentation = "https://reeln-cli.readthedocs.io"
Repository = "https://github.com/StreamnDad/reeln-cli"
Changelog = "https://github.com/StreamnDad/reeln-cli/blob/main/CHANGELOG.md"
Issues = "https://github.com/StreamnDad/reeln-cli/issues"
[project.scripts]
reeln = "reeln.cli:app"
[project.entry-points."reeln.plugins"]
[tool.hatch.version]
path = "reeln/__init__.py"
[tool.ruff]
target-version = "py311"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM", "RUF"]
ignore = ["B008"] # typer.Option() in function defaults is the standard Typer pattern
[tool.mypy]
strict = true
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
[[tool.mypy.overrides]]
module = "typer.*"
implicit_reexport = true
[[tool.mypy.overrides]]
module = "questionary.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "reeln_native.*"
ignore_missing_imports = true