Files
pybricks-api/jedi/pyproject.toml
T

28 lines
746 B
TOML

[tool.poetry]
name = "pybricks_jedi"
# Version is set automatically at build time from the root pyproject.toml. Do not edit.
version = "0.0.0"
description = "Code completion for Pybricks."
authors = ["The Pybricks Authors <team@pybricks.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.12"
# Version is set automatically at build time from the root pyproject.toml. Do not edit.
pybricks = "*"
jedi = "^0.20.0"
typing-extensions = "^4.16.0"
docstring-parser = "^0.18.0"
[tool.poetry.group.dev.dependencies]
pytest = "^9.1.1"
pybricks = { path = "../", develop = true }
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]