24 lines
538 B
TOML
24 lines
538 B
TOML
[project]
|
|
name = "aecpic"
|
|
version = "0.1.0"
|
|
description = "An Anvil Editor extension. download and set editor background image file from target URL."
|
|
readme = "README.md"
|
|
license = "MIT"
|
|
authors = [
|
|
{ name = "moli", email = "moli_green@runbox.com" }
|
|
]
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"click>=8.1.8",
|
|
"magika>=0.6.1",
|
|
"pillow>=11.1.0",
|
|
"pillow-avif-plugin>=1.5.1",
|
|
"requests>=2.32.3",
|
|
]
|
|
|
|
[project.scripts]
|
|
aecpic = "aecpic:cli"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|