-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1 KB
/
pyproject.toml
File metadata and controls
48 lines (42 loc) · 1 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "nbplot"
version = "0.4"
description = "Command-line utility to quickly plot files in a Jupyter notebook"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Nicolas Burrus", email = "nicolas@burrus.name"}
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.8"
dependencies = [
"notebook>=7.0.0",
"nbformat>=5.1",
"traitlets",
"matplotlib",
"mplcursors",
"numpy",
"ipympl",
]
[project.urls]
Homepage = "https://github.com/nburrus/nbplot"
"Bug Tracker" = "https://github.com/nburrus/nbplot/issues"
[project.scripts]
nbplot = "nbplot:main"
[tool.hatch.build.targets.wheel]
packages = ["nbplot"]
[tool.hatch.build.targets.wheel.sources]
"nbplot" = "nbplot"
[tool.hatch.build]
include = [
"nbplot/*.py",
"nbplot/*.ipynb",
"nbplot/templates/*.ipynb",
]