-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
50 lines (43 loc) · 1.28 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 = "jupikchr"
version = "0.2.1"
description = "pikchr text-based diagrams for JupyterLab, etc."
authors = [
{name = "jupikchr contributors", email = "deathbeds@googlegroups.com"},
]
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 = [
"ipywidgets >=7,<9",
"jupyterlab-markup >=2.0.0",
]
[project.urls]
"Bug Tracker" = "https://github.com/deathbeds/jupikchr/issues"
"Changelog" = "https://github.com/deathbeds/jupikchr/blob/main/CHANGELOG.md"
"Documentation" = "https://jupikchr.rtfd.io"
"Source" = "https://github.com/deathbeds/jupikchr"
[tool.flit.sdist]
include = ["src/jupikchr/_d"]
[tool.flit.module]
name = "jupikchr"
[tool.flit.external-data]
directory = "src/jupikchr/_d"
[tool.doit]
backend = "sqlite3"
verbosity = 2
[tool.doit.commands.list]
status = true
subtasks = true