-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
46 lines (41 loc) · 937 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
[build-system]
requires = [
"setuptools >=61",
"setuptools_scm[toml] >=7",
]
build-backend = "setuptools.build_meta"
[project]
name = "nbclick"
description = "Modify and run Jupyter notebooks from the command line"
readme = "README.md"
maintainers = [
{ name = "Dominic Kempf", email = "[email protected]" },
]
license = { text = "MIT" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
dependencies = [
"Click >=8.0",
"ipykernel",
"nbclient >=0.5",
"nbformat >=5.1",
"nbparameterise >=0.5",
]
dynamic = ["version"]
[project.scripts]
nbclick = "nbclick.__main__:main"
[project.optional-dependencies]
tests = [
"pytest",
]
[tool.setuptools]
packages = [
"nbclick",
]
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "node-and-date"
write_to = "nbclick/_version.py"