forked from nebari-dev/jhub-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (52 loc) · 1.03 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "jhub-apps"
description = 'JupyterHub Apps'
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
dependencies = [
"hatchling",
"hatch",
"requests",
"fastapi",
"uvicorn",
"python-multipart",
"jupyterhub>4",
"jupyter",
"plotlydash-tornado-cmd",
"bokeh-root-cmd",
"jhsingle-native-proxy==0.8.2",
"panel",
"bokeh",
"traitlets",
"python-slugify",
"cachetools",
"structlog",
"PyJWT",
]
dynamic = ["version"]
[project.entry-points.jhub_apps]
jhub_apps = "jhub_apps"
[tool.hatch.version]
path = "jhub_apps/__about__.py"
[tool.hatch.envs.default]
dependencies = [
"pytest",
"pytest-cov",
"jupyterhub",
]
[[tool.hatch.envs.test.matrix]]
python = ["38", "39", "310", "311"]
[tool.coverage.run]
branch = true
parallel = true
omit = [
"jhub_apps/__about__.py",
]
[tool.hatch.build.targets.wheel]
include = ["jhub_apps"]
[project.scripts]
japps = "jhub_apps.main:app"