-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (38 loc) · 950 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
40
41
42
43
44
45
46
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "notebook-on-kube"
version = "0.2.1"
description = "A tool to deploy Notebooks on Kubernetes."
readme = "README.md"
authors = [
{ name="machine424", email="ayoubmrini424@gmail.com" },
]
requires-python = ">=3.10"
dependencies = [
"python-multipart",
"fastapi",
"uvicorn",
"pyjwt",
"jinja2",
"ruamel.yaml"
]
[project.scripts]
notebook-on-kube = "notebook_on_kube.main:run"
[project.optional-dependencies]
test = ["black", "isort", "flake8", "mypy", "pytest", "pytest-mock", "requests"]
[project.urls]
"Homepage" = "/~https://github.com/machine424/notebook-on-kube"
[tool.isort]
profile = "black"
[tool.black]
line-length = 120
[tool.mypy]
python_version = "3.10"
exclude = "tests"
warn_redundant_casts = true
warn_unused_ignores = true
warn_unused_configs = true
no_implicit_optional = true
show_error_codes = true