chore: setup python project

This commit is contained in:
arne314
2024-12-20 16:04:45 +01:00
parent 50d892c6b2
commit eb443cabff
9 changed files with 734 additions and 0 deletions

17
pyproject.toml Normal file
View File

@@ -0,0 +1,17 @@
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
name = "typstar"
version = "1.0.0"
description = "Neovim plugin for efficient note taking in typst"
authors = [
{ name = "arne314", email = "73391160+arne314@users.noreply.github.com" }
]
readme = "README.md"
requires-python = ">=3.9.20"
dependencies = [
"aiohttp>=3.11.11",
"tree-sitter-language-pack>=0.2.0",
]