-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (29 loc) · 798 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (29 loc) · 798 Bytes
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
[build-system]
requires = ["hatchling>=1.27"]
build-backend = "hatchling.build"
[project]
name = "mediaforce"
version = "0.1.0"
description = "Manifest-driven AV1 planning and execution workflow for Mediaforce v2"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"alembic",
"fastapi",
"sqlalchemy>=2.0.50,<3",
"starlette",
"uvicorn",
"hatchling"
]
[project.scripts]
mediaforce = "mediaforce.cli:main"
mediaforce-web = "mediaforce.web.app:main"
[tool.hatch.build.targets.wheel]
packages = ["mediaforce"]
[tool.hatch.build.targets.wheel.hooks.custom]
[tool.hatch.build.targets.wheel.force-include]
"frontend/build" = "mediaforce/web/frontend_build"
[tool.ruff]
target-version = "py313"
[tool.ruff.lint]
select = ["ANN001", "ANN002", "ANN003", "ANN202"]