-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 1.14 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (41 loc) · 1.14 KB
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
requires-python = ">=3.9"
name = "ckernel"
description = "Provides a Jupyter kernel which allows automatic compilation and execution of C/C++ code from a notebook environment."
readme = "README.md"
version = "0.5.3"
authors = [{ name = "Adam Tuft" }]
dependencies = [
"colorama>=0.4.6",
"ipykernel>=6.29.5",
"jupyter-client>=8.6.3",
"notebook>=7.3.3",
"sysv-ipc>=1.1.0",
]
license = { text = "BSD-3-Clause" }
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: C",
"Programming Language :: C++",
"Topic :: Education",
"Framework :: IPython",
"Framework :: Jupyter",
"Operating System :: POSIX :: Linux",
]
keywords = ["jupyter", "notebook", "kernel", "c", "c++"]
[project.urls]
"Homepage" = "https://c-kernel.readthedocs.io/en/latest/index.html"
"Bug Tracker" = "https://github.com/adamtuft/c-kernel/issues"
[project.scripts]
ckernel = "ckernel.main:main"
[tool.setuptools]
packages = ["ckernel", "ckernel.resources"]
[tool.setuptools.package-data]
ckernel = ["*"]
[dependency-groups]
dev = [
"pytest>=8.3.5",
]