-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 897 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 897 Bytes
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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "slidenote"
version = "0.1.0"
description = "Coverage-aware course note generator from lecture slides."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "AGPL-3.0-or-later" }
classifiers = [
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
]
dependencies = [
"python-pptx>=0.6.23",
"PyMuPDF>=1.24.0",
"Pillow>=10.0.0",
]
[project.optional-dependencies]
llm = ["openai>=1.40.0"]
gui = ["streamlit>=1.34.0"]
dev = ["pytest>=8.0.0"]
[project.scripts]
slidenote = "slidenote.cli:main"
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"integration: requires optional external software, desktop apps, live APIs, or network services",
]
[tool.setuptools.packages.find]
include = ["slidenote*", "gui*"]