-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
executable file
·61 lines (52 loc) · 1.55 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "jupyter-tigervnc-novnc-proxy"
version = "0.0.1"
authors = [
{ name="Matus Kosut", email="matus.kosut@ntnu.no" },
{ name="Jakub Hudak", email="jakub.hudak@ntnu.no" },
]
description = "Jupyter server proxy for NOVNC"
readme = "README.md"
license = { file = "LICENSE.md" }
requires-python = ">=3.8"
dependencies = [
"jupyter-server-proxy>=3.2.2,<4.0.0",
"websockify",
]
classifiers = [
"Framework :: Jupyter",
"Framework :: Jupyter :: JupyterLab",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
keywords = [
"Jupyter Proxy",
"Jupyter Server Proxy",
"JupyterLab",
]
[project.urls]
"Homepage" = "https://github.com/huntdatacenter/jupyter-tigervnc-novnc-proxy"
[project.optional-dependencies]
dev = ["black", "ruamel.yaml", "pytest", "pytest-cov"]
[project.entry-points.jupyter_serverproxy_servers]
novnc = "jupyter_tigervnc_novnc_proxy:run_app"
[tool.hatch.build.targets.wheel]
packages = ["src/jupyter_tigervnc_novnc_proxy"]
[tool.hatch.build]
sources = ["src"]
artifacts = [
"*.svg",
]
[tool.hatch.build.targets.sdist]
artifacts = []
exclude = [".github", "setup", "Makefile", "docker-compose.yml"]
[tool.hatch.build.targets.jupyter_tigervnc_novnc_proxy]