-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
50 lines (43 loc) · 1.34 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[build-system]
requires = ["flit_core >=3.7.1,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "jupyterlite-lsp"
version = "0.1.0a0"
description = "Multiplexing Language Server Protocol server for JupyterLite"
authors = [
{name = "jupyterlite-lsp contributors", email = "[email protected]"},
]
readme = "README.md"
classifiers = [
"Framework :: Jupyter :: JupyterLab :: 3",
"Framework :: Jupyter :: JupyterLab :: Extensions :: Prebuilt",
"Framework :: Jupyter :: JupyterLab :: Extensions",
"Framework :: Jupyter :: JupyterLab",
"Framework :: Jupyter",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.7"
dependencies = [
"jupyterlab-lsp >=3.10.2",
"jupyterlite >=0.1.0b15"
]
[project.urls]
"Bug Tracker" = "https://github.com/jupyterlite/lsp/issues"
"Changelog" = "https://github.com/jupyterlite/lsp/blob/main/CHANGELOG.md"
"Documentation" = "https://jupyterlite-lsp.rtfd.io"
"Source" = "https://github.com/jupyterlite/lsp"
[tool.flit.sdist]
include = ["src/jupyterlite_lsp/_d"]
[tool.flit.module]
name = "jupyterlite_lsp"
[tool.flit.external-data]
directory = "src/jupyterlite_lsp/_d"
[tool.doit]
backend = "sqlite3"
verbosity = 2
[tool.doit.commands.list]
status = true
subtasks = true