-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (42 loc) · 933 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 = "basilisp-kernel"
dynamic = [
"version",
]
description = "Basilisp kernel for Jupyter"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "ikappaki"}
]
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.8"
dependencies = [
"ipykernel",
"jupyter_client",
"basilisp>=0.1.0b2"
]
[project.optional-dependencies]
test = [
"jupyter_kernel_test",
]
[project.urls]
Homepage = "https://github.com/ikappaki/basilisp-kernel"
[tool.hatch.version]
path = "basilisp_kernel/__init__.py"
# Used to call hatch_build.py
[tool.hatch.build.hooks.custom]
[tool.hatch.build.targets.sdist]
include = [
"/basilisp_kernel",
]
[tool.hatch.build.targets.wheel.shared-data]
"data_kernelspec/share" = "share"