-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 989 Bytes
/
pyproject.toml
File metadata and controls
47 lines (42 loc) · 989 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
37
38
39
40
41
42
43
44
45
46
47
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "canvas_downloader"
version = "0.1.1"
description = "A fast, safe, and customizable CLI tool to download course content from Canvas."
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
authors = [
{ name = "jamubc" },
]
classifiers = [
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
dependencies = [
"requests>=2.32.0",
"pathvalidate>=3.2.0",
"tqdm>=4.66.0",
"beautifulsoup4>=4.12.0",
"html2text>=2024.2.26",
"pdfkit>=1.0.0",
]
[project.urls]
Homepage = "https://github.com/jamubc/Canvas_Downloader"
Issues = "https://github.com/jamubc/Canvas_Downloader/issues"
[project.scripts]
canvas-downloader = "downloader:main"
[tool.hatch.build]
exclude = [
".github",
".vscode",
".venv",
"venv",
"tests",
]
[tool.hatch.build.targets.wheel]
packages = ["."]