-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 803 Bytes
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 803 Bytes
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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.backends._legacy:_Backend"
[project]
name = "notebook2rest"
version = "1.0.0"
description = "Automated transformation of Jupyter notebooks into cloud-native RESTful services"
requires-python = ">=3.11"
dependencies = [
"nbformat>=5.9",
"fastapi>=0.110",
"pydantic>=2.0",
"uvicorn>=0.27",
"jinja2>=3.1",
"pyyaml>=6.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=4.1",
"httpx>=0.27",
"ruff>=0.3",
"mypy>=1.8",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[tool.ruff]
target-version = "py311"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
[tool.mypy]
python_version = "3.11"
strict = true