Set up project

This commit is contained in:
Joscha 2024-02-22 22:48:17 +01:00
parent c7c9a00f0d
commit 322bf46a6c
5 changed files with 248 additions and 0 deletions

17
pyproject.toml Normal file
View file

@ -0,0 +1,17 @@
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "eufs"
version = "0.0.0"
description = "FUSE-based euphoria.leet.nu client"
authors = []
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
fuse-python = "^1.0.7"
[tool.poetry.scripts]
eufs = "eufs.main:main"