forked from open-atmos/devops_tests
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 786 Bytes
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 786 Bytes
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
[build-system]
requires = ["setuptools >= 77.0.3", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ['hooks']
[project]
name = "devops_tests"
dependencies = [
"pytest",
"ghapi",
"gitpython",
"binaryornot",
"nbconvert",
"nbformat",
"jsonschema",
"jupyter-client>=8.0.2",
"ipython",
"ipykernel",
]
readme = "README.md"
license = "GPL-3.0-only"
authors = [
{name = "https://github.com/open-atmos/devops_tests/graphs/contributors", email = "azaba@agh.edu.pl"}
]
dynamic = ['version']
[project.scripts]
check_notebooks = "hooks.check_notebooks:main"
check_badges = "hooks.check_badges:main"
notebooks_output = "hooks.notebooks_output:main"
notebooks_using_jupyter_utils = "hooks.notebooks_using_jupyter_utils:main"