Skip to content

Commit

Permalink
lsp-devtools: Move pyright settings into pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
alcarney committed Jan 27, 2024
1 parent b6adc89 commit 7993aea
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 20 deletions.
39 changes: 22 additions & 17 deletions lib/lsp-devtools/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,25 +11,25 @@ requires-python = ">=3.8"
license = { text = "MIT" }
authors = [{ name = "Alex Carney", email = "[email protected]" }]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"aiosqlite",
"importlib-resources; python_version<\"3.9\"",
"platformdirs",
"pygls>=1.1.0",
"stamina",
"textual>=0.41.0",
"typing-extensions; python_version<\"3.8\"",
"aiosqlite",
"importlib-resources; python_version<\"3.9\"",
"platformdirs",
"pygls>=1.1.0",
"stamina",
"textual>=0.41.0",
"typing-extensions; python_version<\"3.8\"",
]

[project.urls]
Expand All @@ -52,6 +52,11 @@ sort = "Cover"
force_single_line = true
profile = "black"

[tool.pyright]
venv = ".env"
include = ["lsp_devtools"]
pythonVersion = "3.8"

[tool.towncrier]
filename = "CHANGES.md"
directory = "changes/"
Expand Down
3 changes: 0 additions & 3 deletions lib/lsp-devtools/pyrightconfig.json

This file was deleted.

0 comments on commit 7993aea

Please sign in to comment.