21 lines
417 B
TOML
21 lines
417 B
TOML
|
[project]
|
||
|
name = "Automatic_Video_Transcoder"
|
||
|
version = "0.1.0"
|
||
|
description = "Default template for PDM package"
|
||
|
authors = [
|
||
|
{name = "Jan Beníček", email = "jan00@benicek.xyz"},
|
||
|
]
|
||
|
dependencies = [
|
||
|
"pydantic-settings>=2.3.4",
|
||
|
"pydantic>=2.8.2",
|
||
|
]
|
||
|
requires-python = "==3.12.*"
|
||
|
readme = "README.md"
|
||
|
license = {text = "MIT"}
|
||
|
|
||
|
|
||
|
[tool.pdm]
|
||
|
distribution = false
|
||
|
|
||
|
[tool.pdm.scripts]
|
||
|
start = "python src/main.py"
|