-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
62 lines (54 loc) · 1.47 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
[project]
name = "jupyter-tutorial"
version = "24.1.0"
authors = [
{ name="Veit Schiele", email="veit@cusy.io" },
]
description = "Training materials for setting up and using a research infrastructure based on Jupyter notebooks: https://cusy.io/en/seminars"
readme = "README.rst"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
dependencies = []
[project.optional-dependencies]
docs = [
"furo",
"ipython",
"ipywidgets",
"nbsphinx",
"sphinxext.opengraph", # matplotlib is required for social cards
"matplotlib",
"sphinx_copybutton",
"sphinx-inline-tabs",
"sphinxcontrib-svg2pdfconverter",
"sphinx-lint",
]
dev = [
"jupyter-tutorial[docs]",
"pre-commit",
"codespell",
"vale",
]
[project.urls]
"Homepage" = "https://github.com/veit/jupyter-tutorial/"
"Bug Tracker" = "https://github.com/veit/jupyter-tutorial/issues"
[tool.setuptools]
packages = []
[tool.black]
line-length = 79
[tool.isort]
atomic=true
force_grid_wrap=0
include_trailing_comma=true
lines_after_imports=2
lines_between_types=1
multi_line_output=3
not_skip="__init__.py"
use_parentheses=true
known_first_party="jupyter-tutorial-de"
known_third_party=["Cython", "accounts_pb2", "accounts_pb2_grpc", "dataprep", "google", "grpc", "mpi4py", "numpy", "pandas", "pydantic", "pytest", "requests", "setuptools"]
[tool.codespell]
skip = "*.html, *.ipynb"