18 lines
390 B
TOML
18 lines
390 B
TOML
[build-system]
|
|
requires = ["setuptools>=61"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "webpaper"
|
|
version = "0.1.0"
|
|
description = "Pagina web come sfondo del desktop (ispirato a Hidamari)"
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
license = { text = "GPL-3.0-or-later" }
|
|
|
|
[project.scripts]
|
|
webpaper = "webpaper.__main__:main"
|
|
|
|
[tool.setuptools]
|
|
packages = ["webpaper"]
|