forked from PrunaAI/ai-efficiency-courses
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
45 lines (40 loc) · 1.06 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ai-efficiency-courses"
version = "0.1.0"
description = "AI Efficiency Courses with Pruna"
readme = "README.md"
requires-python = ">=3.10,<3.13"
dependencies = [
"pruna[full]==0.2.10",
"matplotlib",
"jupyter>=1.1.1",
"notebook>=6.0.0",
"ipywidgets>=8.1.7",
"widgetsnbextension",
"pyarrow<20",
"fsspec==2023.9.2",
"ruff>=0.12.7",
"pre-commit>=3.6.0",
"plotly>=6.2.0",
"pymupdf>=1.26.3",
"ipython[all]>=8.37.0",
"gradio-pdf>=0.0.22",
"pdf2image>=1.17.0",
]
[project.scripts]
sync-notebooks = "scripts.sync_notebooks:main"
add-colab-buttons = "scripts.add_colab_buttons:main"
[project.urls]
Repository = "https://github.com/PrunaAI/ai-efficiency-courses"
[tool.setuptools]
packages = ["course", "slides"]
py-modules = ["scripts.sync_notebooks", "scripts.add_colab_buttons"]
[tool.uv]
extra-index-url = [
"https://prunaai.pythonanywhere.com/",
]
index-strategy = "unsafe-best-match"
prerelease = "allow"