forked from zoghbi-a/jpyjs9
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (32 loc) · 871 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "jpyjs9"
description = 'Running js9 on inside jupyter'
readme = "README.md"
requires-python = ">=3.7"
license = "MIT"
keywords = []
authors = [
{ name = "Abdu Zoghbi", email = "[email protected]" },
]
dependencies = [
'jupyter-server-proxy',
"python-socketio[client]",
"socketIO-client",
"sidecar",
"pyjs9==3.8"
]
dynamic = ["version"]
[project.entry-points.jupyter_serverproxy_servers]
js9 = "jpyjs9:js9_web_server"
js9Helper = "jpyjs9:js9_helper_server"
[project.urls]
Source = "https://github.com/zoghbi-a/jpyjs9"
[tool.hatch.version]
path = "jpyjs9/__init__.py"
[tool.hatch.build.targets.wheel.shared-data]
"jpyjs9.json" = "etc/jupyter/jupyter_server_config.d/jpyjs9.json"
[tool.hatch.build.targets.sdist]
exclude = [".git", ".ipynb_checkpoints"]