forked from jupyter-server/enterprise_gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
114 lines (97 loc) · 2.92 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
[build-system]
requires = ["hatchling>=0.25"]
build-backend = "hatchling.build"
[project]
name = "jupyter_enterprise_gateway"
version = "3.0.0.dev0"
description = "A web server for spawning and communicating with remote Jupyter kernels"
license = { file = "LICENSE.md" }
keywords = ["Interactive","Interpreter","Kernel", "Web", "Cloud"]
classifiers = [
"Intended Audience :: Developers", "Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
]
requires-python = ">=3.7"
dependencies = [
"docker>=3.5.0",
"future",
"jinja2>=3.1",
"jupyter_client~=6.1", # Remove cap once EG supports kernel provisioners
"jupyter_core>=4.6.0",
"kubernetes>=4.0.0",
"jupyter_server>=1.2",
"paramiko>=2.11",
"pexpect>=4.2.0",
"pycryptodomex>=3.9.7",
"pyzmq>=17.0.0",
"requests>=2.7",
"tornado>=6.1",
"traitlets>=4.3.3",
"watchdog>=2.1.3",
"yarn-api-client>=1.0"
]
[[project.authors]]
name = "Jupyter Development Team"
email = "[email protected]"
[project.readme]
text = "A lightweight, multi-tenant, scalable, and secure gateway that enables\nJupyter Notebooks to share resources across distributed clusters such as\nApache Spark, Kubernetes and others."
content-type = "text/plain"
[project.urls]
Homepage = "http://github.com/jupyter/enterprise_gateway"
[project.optional-dependencies]
test = [
"coverage",
"pytest",
"pytest-tornasync",
"ipykernel",
"pre-commit",
"websocket-client"
]
[project.scripts]
jupyter-enterprisegateway = "enterprise_gateway.enterprisegatewayapp:launch_instance"
[tool.hatch.build.targets.wheel]
include = ["enterprise_gateway"]
[tool.tbump.version]
current = "3.0.0.dev0"
regex = '''
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
((?P<channel>a|b|rc|.dev)(?P<release>\d+))?
'''
[tool.tbump.git]
message_template = "Bump to {new_version}"
tag_template = "v{new_version}"
[[tool.tbump.file]]
src = "enterprise_gateway/_version.py"
[[tool.tbump.file]]
src = "pyproject.toml"
[[tool.tbump.file]]
src = "Makefile"
[[tool.tbump.file]]
src = "etc/kubernetes/helm/enterprise-gateway/Chart.yaml"
search = 'appVersion: {current_version}'
[[tool.tbump.field]]
name = "channel"
default = ""
[[tool.tbump.field]]
name = "release"
default = ""
[tool.jupyter-releaser.options]
ignore-links = ["http://my-gateway-server.com:8888"]
[tool.pytest.ini_options]
addopts = "-raXs --durations 10 --color=yes --doctest-modules"
testpaths = [
"enterprise_gateway/tests/"
]
filterwarnings = [
"error",
"ignore:There is no current event loop:DeprecationWarning",
"ignore:Passing unrecognized arguments to super:DeprecationWarning:jupyter_client",
]