-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
85 lines (79 loc) · 1.79 KB
/
pyproject.toml
File metadata and controls
85 lines (79 loc) · 1.79 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[project]
name = "ai-tutorial"
version = "24.1.0"
authors = [
{ name="Min Ye", email="minye.epfl@gmail.com" },
{ name="Veit Schiele", email="veit@cusy.io" },
]
description = "Schulungsmaterialien für die Einführung in KI mit Python (ML, Deep Learning, Reinforcement Learning, Generative KI). Seminare: https://cusy.io/de/seminare"
readme = "README.rst"
requires-python = ">=3.13"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
dependencies = [
"accelerate>=1.1.0",
"datasets",
"dedupe",
"jupyter",
"kagglehub",
"keras",
"missingno",
"numpy",
"pandas",
"plotly",
"scikit-learn",
"shap",
"tensorflow",
"torch",
"transformers",
"kagglehub",
"plotly",
"missingno"
]
[project.optional-dependencies]
docs = [
"sphinx>=8,<9",
"furo",
"ipython",
"ipywidgets",
"notebook",
"nbsphinx",
"sentence-transformers",
"sphinxext.opengraph",
"matplotlib",
"sphinx_copybutton",
"sphinx-inline-tabs",
"sphinxcontrib-svg2pdfconverter",
"sphinx-lint",
"pygments-pytest",
]
[dependency-groups]
docs = [
"sphinx>=8,<9",
"furo",
"ipython",
"ipywidgets",
"notebook",
"nbsphinx",
"sentence-transformers",
"sphinxext.opengraph", # matplotlib is required for social cards
"matplotlib",
"sphinx_copybutton",
"sphinx-inline-tabs",
"sphinxcontrib-svg2pdfconverter",
"sphinx-lint",
"pygments-pytest",
]
dev = [
{include-group = "docs"},
"pre-commit",
"codespell",
]
[project.urls]
"Homepage" = "https://github.com/AInvone/Intro-in-KI-Schulung/"
"Bug Tracker" = "https://github.com/AInvone/Intro-in-KI-Schulung/issues"
[tool.codespell]
skip = "*.rst, *.svg"