-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (77 loc) · 2.03 KB
/
pyproject.toml
File metadata and controls
82 lines (77 loc) · 2.03 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
[project]
name = "ai_advanced"
description = "Lecture notes on ai and machine learning with python"
version = "1.0.0"
license = "MIT"
authors = [
{ name = "Paul-B98", email = "115164840+Paul-B98@users.noreply.github.com" }
]
maintainers = [
{ name = "Paul-B98", email = "115164840+Paul-B98@users.noreply.github.com" }
]
readme = "README.md"
keywords = ["Lecture", "Notes", "AI", "Machine Learning", "Python"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.12"
dependencies = [
"bertviz>=1.4.1",
"datasets>=3.6.0",
"evaluate>=0.4.4",
"jupyterlab>=4.4.3",
"lightning>=2.6.0",
"matplotlib>=3.10.0",
"numpy>=2.1.3",
"optuna>=4.6.0",
"pandas>=2.3.0",
"scikit-learn>=1.7.0",
"seaborn>=0.13.2",
"seqeval>=1.2.2",
"smolagents[openai]>=1.23.0",
"tensorboard>=2.19.0",
"torch>=2.7.1",
"torchvision>=0.22.1",
"transformers[torch]>=4.52.4",
]
[project.urls]
homepage = "https://github.com/Paul-B98/lecture-ai-advanced"
repository = "https://github.com/Paul-B98/lecture-ai-advanced"
changelog = "https://github.com/Paul-B98/lecture-ai-advanced/releases"
issues = "https://github.com/Paul-B98/lecture-ai-advanced/issues"
documentation = "https://github.com/Paul-B98/lecture-ai-advanced/wiki"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"jupyter>=1.1.1",
"mypy>=1.16.0",
"pytest>=8.4.0",
"pytest-cov>=6.2.1",
"ruff>=0.11.13",
]
[tool.pytest.ini_options]
python_files = ["test_*.py", "*_test.py"]
filterwarnings = ["ignore::DeprecationWarning"]
pythonpath = ["src"]
cache_dir = "/workspaces/.cache/pytest"
addopts = [
"--cov",
"--cov-branch",
"--cov=src",
"--cov-report=xml",
"--import-mode=importlib",
]
[tool.mypy]
python_version = "3.13"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
strict_optional = true
exclude = [
"docs/*",
"tests/*",
]