-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (49 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
52 lines (49 loc) · 1.38 KB
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
[project]
name = "python-basics-tutorial"
version = "24.2.0"
description = "Training materials for our Python basics course: https://cusy.io/en/seminars"
readme = "README.rst"
license = "BSD-3-Clause"
license-files = [ "LICENSE" ]
authors = [
{ name = "Veit Schiele", email = "veit@cusy.io" },
]
requires-python = ">=3.10"
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [ ]
urls."Bug Tracker" = "https://github.com/veit/python-basics-tutorial/issues"
urls."Homepage" = "https://github.com/veit/python-basics-tutorial/"
[dependency-groups]
dev = [
"codespell",
"pre-commit",
"vale",
{ include-group = "docs" },
]
docs = [
"furo",
"ipython",
"ipywidgets",
"matplotlib", # matplotlib is required for social cards
"nbsphinx",
"pygments-pytest",
"sphinx<8.2", # furo requires sphinx < 8.2
"sphinx-copybutton",
"sphinx-inline-tabs",
"sphinx-lint",
"sphinx-notfound-page",
"sphinx-sitemap",
"sphinxcontrib-plantuml",
"sphinxcontrib-svg2pdfconverter",
"sphinxext-opengraph",
]
[tool.codespell]
ignore-words-list = "allo, ist, Juli, symbl"