-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
36 lines (31 loc) · 1.04 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
requires-python = ">=3.8"
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 = ["sysv_ipc", "ipykernel", "jupyter_client", "colorama", "notebook"]
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 = ["*"]