This commit is contained in:
fdev31 2023-04-27 16:50:57 +02:00
parent 041e76123b
commit ce416f2a27
13 changed files with 859 additions and 2 deletions

20
pyproject.toml Normal file
View file

@ -0,0 +1,20 @@
[tool.poetry]
name = "pyprland"
version = "1.0.0"
description = "An hyperland plugin system"
authors = ["fdev31 <fdev31@gmail.com>"]
license = "MIT"
readme = "README.md"
packages = [{include = "pyprland"}]
homepage = "https://github.com/fdev31/pyprland/"
[tool.poetry.scripts]
pypr = "pyprland.command:main"
[tool.poetry.dependencies]
python = "^3.10"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"