-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (51 loc) · 1.5 KB
/
pyproject.toml
File metadata and controls
60 lines (51 loc) · 1.5 KB
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
[project]
name = "sshpyk"
dynamic = ["version"]
description = "remote jupyter kernels via ssh tunnels"
authors = [
{ name = "National Radio Astronomy Observatory", email = "casa-feedback@nrao.edu" },
]
# Confirmed to work on jupyter-client 8.6.3
dependencies = ["jupyter-client>=7.0"]
requires-python = ">=3.8"
readme = "README.rst"
license = { text = "BSD-3-Clause" }
classifiers = [
"Topic :: Utilities",
"Framework :: Jupyter",
]
[project.urls]
"Homepage" = "https://github.com/casangi/sshpyk?tab=readme-ov-file#remote-jupyter-kernels-via-ssh"
"Source" = "https://github.com/casangi/sshpyk"
"Bug Tracker" = "https://github.com/casangi/sshpyk/issues"
[project.scripts]
sshpyk = "sshpyk.cli:main"
sshpyk-kernel = "sshpyk.kernelapp:main"
# Integrate with Jupyter Client
[project.entry-points."jupyter_client.kernel_provisioners"]
sshpyk-provisioner = "sshpyk.provisioning:SSHKernelProvisioner"
# Dev config
[project.optional-dependencies]
dev = ["pre-commit"]
[tool]
[tool.pdm]
[tool.pdm.build]
[tool.pdm.version]
source = "scm"
write_to = "sshpyk/__version__.py"
write_template = "__version__ = '{}'" # optional, default to "{}"
[build-system]
requires = ["pdm-pep517>=0.12.0"]
build-backend = "pdm.pep517.api"
# Ruff is installed and run using pre-commit
[tool.ruff]
line-length = 88
target-version = "py38"
lint.select = ["B", "E", "F", "I", "W", "N", "S"]
lint.ignore = []
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
line-ending = "auto"
[tool.ruff.lint.isort]
known-first-party = ["sshpyk"]