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

1
.python-version Normal file
View file

@ -0,0 +1 @@
3.14

View file

@ -1,2 +1,5 @@
# e.lovinator.space
| ![e.lovinator.space](pic.webp) | **e.lovinator.space** will be used for adding embeds for sites that have bad or no embeds, for example Reddit and Twitter. |
| ------------------------------ | -------------------------------------------------------------------------------------------------------------------------- |

BIN
pic.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 80 KiB

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"

View file

@ -0,0 +1,2 @@
def main() -> None:
print("Hello from e-lovinator-space!")