-
Notifications
You must be signed in to change notification settings - Fork 66
/
pyproject.toml
57 lines (49 loc) · 1.39 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]
requires = ["hatchling >=1.5"]
build-backend = "hatchling.build"
[project]
name = "octave_kernel"
description = "'A Jupyter kernel for Octave.'"
license = {file = "LICENSE.txt"}
authors = [{name = "'Steven Silvester'", email = "[email protected]"}]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
"Topic :: System :: Shells",
]
urls = {Homepage = "http://github.com/Calysto/octave_kernel"}
requires-python = ">=3.7"
dependencies = [
"metakernel >=0.24.0",
"jupyter_client >=4.3.0",
"ipykernel",
]
dynamic = ["version"]
[project.readme]
file = "README.rst"
content-type = "text/x-rst"
[project.optional-dependencies]
test = ["pytest", "nbconvert", "jupyter_kernel_test", "nbconvert"]
# Used to call hatch_build.py
[tool.hatch.build.hooks.custom]
[tool.hatch.build.targets.wheel.shared-data]
"jupyter-data" = "share/jupyter/kernels/octave"
[tool.hatch.build.targets.sdist]
artifacts = ["jupyter-data"]
include = [
"/jupyter-data",
"/octave_kernel",
"/*.md",
"/*.ipynb",
"/*.py"
]
[tool.hatch.version]
path = "octave_kernel/_version.py"
validate-bump = false
[tool.check-wheel-contents]
ignore = ["W002"]