Init empty Python project
This commit is contained in:
parent
01af2bf978
commit
e5a8f01aaa
5 changed files with 21 additions and 0 deletions
1
.python-version
Normal file
1
.python-version
Normal file
|
|
@ -0,0 +1 @@
|
|||
3.14
|
||||
|
|
@ -1,2 +1,5 @@
|
|||
# e.lovinator.space
|
||||
|
||||
|  | **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
BIN
pic.webp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 80 KiB |
15
pyproject.toml
Normal file
15
pyproject.toml
Normal 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"
|
||||
2
src/e_lovinator_space/__init__.py
Normal file
2
src/e_lovinator_space/__init__.py
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
def main() -> None:
|
||||
print("Hello from e-lovinator-space!")
|
||||
Loading…
Reference in a new issue