diff --git a/.python-version b/.python-version new file mode 100644 index 0000000..6324d40 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.14 diff --git a/README.md b/README.md index a356d7b..a758f06 100644 --- a/README.md +++ b/README.md @@ -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. | +| ------------------------------ | -------------------------------------------------------------------------------------------------------------------------- | + diff --git a/pic.webp b/pic.webp new file mode 100644 index 0000000..4e53049 Binary files /dev/null and b/pic.webp differ diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..338e1a7 --- /dev/null +++ b/pyproject.toml @@ -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" diff --git a/src/e_lovinator_space/__init__.py b/src/e_lovinator_space/__init__.py new file mode 100644 index 0000000..fdc4afa --- /dev/null +++ b/src/e_lovinator_space/__init__.py @@ -0,0 +1,2 @@ +def main() -> None: + print("Hello from e-lovinator-space!")