forked from deathbeds/jupyterlab-deck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (38 loc) · 1.03 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
[build-system]
requires = ["flit_core >=3.7.1,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "jupyterlab-deck"
version = "0.1.0a0"
authors = [
{name = "Dead Pixels Collective", 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"
dynamic = ["description"]
dependencies = [
# likely need to pin less tightly
"jupyterlab >=3,<4",
]
[tool.flit.sdist]
include = ["src/jupyterlab_deck/_d"]
[tool.flit.module]
name = "jupyterlab_deck"
[tool.flit.external-data]
directory = "src/jupyterlab_deck/_d"
[tool.doit]
backend = "sqlite3"
verbosity = 2
[tools.doit.commands.list]
status = true
subtasks = true