Files

50 lines
1.3 KiB
TOML
Raw Permalink Normal View History

2026-08-18 12:40:58 +08:00
[project]
name = "assemblicon"
version = "0.1.0"
2026-08-20 16:10:07 +08:00
description = "The Programmatic Icon Assembly Workflow."
2026-08-18 12:40:58 +08:00
readme = "README.md"
authors = [
{ name = "yyc12345", email = "yyc12321@outlook.com" }
]
2026-09-09 20:17:12 +08:00
keywords = [
"icon",
"icon-set",
"icon-assembly",
"image-composition",
"asset-pipeline",
"design-automation",
"batch-processing",
"reproducible-builds",
"pillow",
"svg",
"ico",
"icns",
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.13",
"Topic :: Artistic Software",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
"Topic :: Software Development :: Build Tools",
]
2026-08-18 12:40:58 +08:00
requires-python = ">=3.13"
2026-09-09 20:17:12 +08:00
license = { text = "MIT" }
2026-08-20 16:10:07 +08:00
dependencies = [
"pillow>=12.3.0",
]
2026-08-18 12:40:58 +08:00
2026-09-09 20:17:12 +08:00
[project.urls]
Homepage = "https://github.com/SarasasChipWorkshop/assemblicon"
Repository = "https://github.com/SarasasChipWorkshop/assemblicon"
Issues = "https://github.com/SarasasChipWorkshop/assemblicon/issues"
2026-08-18 12:40:58 +08:00
[build-system]
requires = ["uv_build>=0.8.0,<0.9"]
build-backend = "uv_build"