20 lines
465 B
TOML
20 lines
465 B
TOML
[project]
|
|
name = "reocon"
|
|
version = "0.1.0"
|
|
description = "Default template for PDM package"
|
|
authors = [
|
|
{name = "Alexander Rossmanith", email = ""},
|
|
]
|
|
dependencies = ["reolinkapi>=0.4.1", "pandas>=3.0.3", "flask>=3.1.3", "python-dotenv>=1.2.2", "Pillow>=12.2.0"]
|
|
requires-python = "==3.14.*"
|
|
readme = "README.md"
|
|
license = {text = "MIT"}
|
|
|
|
|
|
[tool.pdm]
|
|
distribution = false
|
|
|
|
[tool.pdm.scripts]
|
|
reocon = "python main.py"
|
|
reocon-console = "python main.py console"
|