forked from hhu-stups/prolog-jupyter-kernel
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
57 lines (54 loc) · 1.29 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
51
52
53
54
55
56
57
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=61.0"
]
[project]
name = "logtalk-jupyter-kernel"
version = "0.15.0"
authors = [
{ name = "Paulo Moura", email = "pmoura@logtalk.org" },
{ name = "Anne Brecklinghaus" },
{ name = "Michael Leuschel" },
{ name = "dgelessus" }
]
maintainers = [
{ name = "Paulo Moura", email = "pmoura@logtalk.org" }
]
description = "Hercutalk - A Jupyter Kernel for Logtalk"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.7"
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Jupyter",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Topic :: Scientific/Engineering",
"Topic :: System :: Shells",
"Natural Language :: English",
"Programming Language :: Prolog",
]
keywords = [
"logtalk",
"prolog",
"logic-programming",
]
dependencies = [
"jupyter_client",
"IPython",
"ipykernel",
"graphviz",
"beautifulsoup4",
]
[project.urls]
"Source" = "https://github.com/LogtalkDotOrg/logtalk-jupyter-kernel"
"Issues" = "https://github.com/LogtalkDotOrg/logtalk-jupyter-kernel/issues"
[project.optional-dependencies]
dev = [
"jupyter_core",
"jupyterlab",
"notebook",
]