26 lines
617 B
TOML
26 lines
617 B
TOML
[build-system]
|
|
requires = ["setuptools", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.poetry]
|
|
name = "italianswirls"
|
|
version = "1.1.0"
|
|
description = "Minimal Python language server based on Jedi"
|
|
authors = ["dece <shgck@pistache.land>"]
|
|
readme = "README.md"
|
|
repository = "https://git.dece.space/Dece/ItalianSwirls"
|
|
[tool.poetry.scripts]
|
|
italianswirls = 'italianswirls.cli:main'
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.8,<3.12"
|
|
pygls = "^1.3.1"
|
|
jedi = "^0.19.1"
|
|
[tool.poetry.group.dev]
|
|
optional = true
|
|
[tool.poetry.group.dev.dependencies]
|
|
flake8 = "*"
|
|
mypy = "*"
|
|
|
|
[tool.mypy]
|
|
ignore_missing_imports = true
|