-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
45 lines (41 loc) · 1.06 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
[project]
name = "python-basics-tutorial"
version = "24.2.0"
authors = [
{ name="Veit Schiele", email="veit@cusy.io" },
]
description = "Training materials for our Python basics course: 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.plantuml",
"sphinxcontrib-svg2pdfconverter",
"sphinx-lint",
"pygments-pytest",
]
dev = [
"python-basics-tutorial[docs]",
"pre-commit",
"codespell",
"vale"
]
[project.urls]
"Homepage" = "https://github.com/veit/python-basics-tutorial/"
"Bug Tracker" = "https://github.com/veit/python-basics-tutorial/issues"
[tool.codespell]
ignore-words-list = "ist, symbl, allo"