forked from jupyter/echo_kernel
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
50 lines (42 loc) · 992 Bytes
/
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 = [
"hatchling>=1.10.0", "ipykernel"
]
build-backend = "hatchling.build"
[project]
name = "echo-kernel"
dynamic = [
"version",
]
description = "Simple example kernel for Jupyter"
readme = "README.rst"
license = { file = "LICENSE" }
authors = [
{ name = "Jupyter Development Team", email = "[email protected]" },
]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.8"
dependencies = [
"ipykernel",
"jupyter_client",
]
[project.optional-dependencies]
test = [
"jupyter_kernel_test",
]
[project.urls]
Homepage = "https://github.com/jupyter/echo_kernel"
[tool.hatch.version]
path = "echo_kernel/__init__.py"
# Used to call hatch_build.py
[tool.hatch.build.hooks.custom]
[tool.hatch.build.targets.sdist]
include = [
"/echo_kernel",
]
[tool.hatch.build.targets.wheel.shared-data]
"data_kernelspec/share" = "share"