-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (44 loc) · 1.35 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel.shared-data]
"jupyter-config" = "etc/jupyter"
[project]
name = "jupyter-server-user-token"
description = "Jupyter Server Extension to inject the User Token into the Jupyter Server environment"
dynamic = ["version"]
authors = [{name = "Steve Purves", email = "[email protected]"}]
dependencies = ["jupyter_server"]
readme = "README.md"
keywords = ["Jupyter", "Extension", "Auth"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Framework :: Jupyter",
]
[project.license]
file="LICENSE"
[project.urls]
Home = "https://github.com/curvenote/jupyter-server-user-token"
[tool.hatch.version]
path = "jupyter_server_user_token/__init__.py"
[tool.mypy]
check_untyped_defs = true
disallow_incomplete_defs = true
no_implicit_optional = true
pretty = true
show_error_context = true
show_error_codes = true
strict_equality = true
warn_unused_configs = true
warn_unused_ignores = true
warn_redundant_casts = true
[tool.black]
line-length = 100
target-version = ["py38"]
skip-string-normalization = true