Files
magnific/pyproject.toml
valknar 941fd14ccf refactor: rename project from Freepik to Magnific
Rename all identifiers, strings, file names, env vars, CLI entry point,
ASCII banner, and API endpoint to reflect the company rebrand.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-16 13:06:16 +02:00

49 lines
973 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "magnific-cli"
version = "0.1.0"
description = "A beautiful CLI for the Magnific AI API — generate images, videos, and more"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "Sebastian Krüger", email = "valknar@pivoine.art" }]
dependencies = [
"typer[all]>=0.12.0",
"rich>=13.7.0",
"httpx>=0.27.0",
"pydantic>=2.7.0",
"pydantic-settings>=2.3.0",
"toml>=0.10.2",
"platformdirs>=4.2.0",
"pillow>=10.3.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.2.0",
"ruff>=0.4.0",
"mypy>=1.10.0",
]
[project.scripts]
magnific = "magnific_cli.main:app"
[tool.hatch.build.targets.wheel]
packages = ["magnific_cli"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.11"
strict = false