-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
86 lines (76 loc) · 2.27 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[build-system]
requires = [
"hatchling>=1.21.1",
"jupyterlab>=4.0.0,<5",
"hatch-nodejs-version>=0.3.2",
]
build-backend = "hatchling.build"
[project]
name = "eptium"
dynamic = ["version"]
description = "A jupyter widget to display COPC and COGS data from Eptium."
readme = "README.md"
license = { file = "LICENSE.txt" }
requires-python = ">=3.9"
authors = [{ name = "Ognyan Moore", email = "[email protected]" }]
keywords = ["IPython", "Jupyter", "Widgets"]
classifiers = [
"Framework :: Jupyter",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = ["ipywidgets>=8.0.0", "jupyter"]
[project.optional-dependencies]
docs = [
"jupyter_sphinx",
"nbsphinx",
"nbsphinx-link",
"pypandoc",
"pytest_check_links",
"recommonmark",
"sphinx>=1.5",
"sphinx_rtd_theme",
]
examples = []
test = ["nbval", "pytest-cov", "pytest>=6.0"]
[project.urls]
Homepage = "https://github.com/hobuinc/eptium-python"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build]
artifacts = [
"eptium/nbextension/index.*",
"eptium/labextension/*.tgz",
"eptium/labextension",
]
[tool.hatch.build.targets.wheel.shared-data]
"eptium/nbextension" = "share/jupyter/nbextensions/eptium"
"eptium/labextension" = "share/jupyter/labextensions/eptium"
"./install.json" = "share/jupyter/labextensions/eptium/install.json"
"./eptium.json" = "etc/jupyter/nbconfig/notebook.d/eptium.json"
[tool.hatch.build.targets.sdist]
exclude = [".github"]
[tool.hatch.version]
path = "eptium/_version.py"
[tool.hatch.build.hooks.jupyter-builder]
build-function = "hatch_jupyter_builder.npm_builder"
ensured-targets = [
"eptium/nbextension/index.js",
"eptium/labextension/package.json",
]
skip-if-exists = [
"eptium/nbextension/index.js",
"eptium/labextension/package.json",
]
dependencies = ["hatch-jupyter-builder>=0.8.3"]
[tool.hatch.build.hooks.jupyter-builder.build-kwargs]
path = "."
build_cmd = "build:prod"
npm = ["jlpm"]