Init empty Python project

This commit is contained in:
Joakim Hellsén 2026-08-09 01:39:52 +02:00
commit e5a8f01aaa
Signed by: Joakim Hellsén
SSH key fingerprint: SHA256:/9h/CsExpFp+PRhsfA0xznFx2CGfTT5R/kpuFfUgEQk
5 changed files with 21 additions and 0 deletions

15
pyproject.toml Normal file
View file

@ -0,0 +1,15 @@
[project]
name = "e-lovinator-space"
version = "0.1.0"
description = "Embeds for sites with bad or missing embeds, such as Reddit and Twitter."
readme = "README.md"
authors = [{ name = "Joakim Hellsén", email = "tlovinator@gmail.com" }]
requires-python = ">=3.14"
dependencies = []
[project.scripts]
e = "e:main"
[build-system]
requires = ["uv_build>=0.12.3,<0.13.0"]
build-backend = "uv_build"