mirror of
https://github.com/Ascyii/typstar.git
synced 2026-01-01 13:34:24 -05:00
34 lines
619 B
TOML
34 lines
619 B
TOML
[build-system]
|
|
requires = ["pdm-backend"]
|
|
build-backend = "pdm.backend"
|
|
|
|
[project]
|
|
name = "typstar"
|
|
version = "1.3.2"
|
|
description = "Neovim plugin for efficient note taking in Typst"
|
|
authors = [
|
|
{ name = "arne314" }
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">=3.11.10"
|
|
dependencies = [
|
|
"aiohttp>=3.11.11",
|
|
"appdirs>=1.4.4",
|
|
"tree-sitter>=0.23.2",
|
|
"typer>=0.15.1",
|
|
"tree-sitter-typst @ git+https://github.com/uben0/tree-sitter-typst"
|
|
]
|
|
|
|
[project.scripts]
|
|
typstar-anki = "anki.main:main"
|
|
|
|
[tool.ruff]
|
|
lint.extend-select = ["I"]
|
|
line-length = 100
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"ruff>=0.8.5",
|
|
]
|
|
|