mamma-ai / pyproject.toml
baldassarre's picture
Gradio version
2654b71
raw
history blame contribute delete
557 Bytes
[project]
name = "MammaAI"
version = "0.1.0"
description = "Mamma AI"
readme = "README.md"
requires-python = "==3.12.*"
dependencies = [
"gradio~=6.0.2",
"requests",
"python-dotenv",
"dotenv",
]
[project.optional-dependencies]
dev = [
"ruff",
]
[project.scripts]
start = "python app.py"
[tool.ruff]
line-length = 120
target-version = "py312"
fix = true
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.ruff.lint.per-file-ignores]
"*.ipynb" = [
"E402", # module level import not at top of file
"F401", # imported but unused
]