forked from Quansight/qhub-jupyterhub-theme
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
56 lines (50 loc) · 1.54 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
# Copyright (c) Nebari Development Team.
# Distributed under the terms of the Modified BSD License.
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "nebari-jupyterhub-theme"
version = "2024.7.1"
description = "Nebari JupyterHub theme"
readme = "README.md"
license = "BSD-3-Clause"
requires-python = ">=3.8"
maintainers = [{ name = "Nebari development team" }]
keywords = ["jupyterhub", "theme"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Build Tools",
"Operating System :: OS Independent",
]
dependencies = ["jupyterhub>=5.0.0"]
[project.urls]
"Bug Reports" = "https://github.com/nebari-dev/nebari-jupyterhub-theme/issues"
Homepage = "https://nebari.dev"
"Source code" = "https://github.com/nebari-dev/nebari-jupyterhub-theme"
[tool.hatch.build.targets.sdist]
include = ["/nebari_jupyterhub_theme"]
exclude = ["/.github", "*.md", "*.yml", ".*", ".envrc", "*.nix"]
[tool.hatch.envs.dev]
skip-install = false
conda-forge = true
command = "conda"
dependencies = [
"jupyterhub",
"jupyterlab",
"nodejs",
"configurable-http-proxy",
"pre-commit"
]
[tool.hatch.envs.dev.scripts]
render = "jupyterhub --config test_jupyterhub_config.py"
install_precommit = " pre-commit install --install-hooks"
# https://www.djlint.com/docs/linter/
[tool.djlint]
ignore = "T001,T028,H006,J018"
max_line_length = 120
format_css = true
format_js = true