forked from coursera-dl/coursera-dl
-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
78 lines (71 loc) · 1.86 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "coursera-helper"
dynamic = ["version"]
description = "Script for downloading Coursera.org videos and naming them."
readme = "README.md"
license = {file = "LICENSE"}
maintainers = [
{ name = "Ye Zheng", email = "[email protected]" },
]
keywords = [
"MOOCs",
"coursera",
"coursera-dl",
"download",
"education",
"video",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Education",
]
dependencies = [
"beautifulsoup4>=4.1.3",
"requests>=2.10.0",
"six>=1.5.0",
"urllib3>=1.23",
"pyasn1>=0.1.7",
"keyring>=4.0",
"configargparse>=0.12.0",
"attrs==18.1.0",
"playwright>=1.38.0",
"browser_cookie3>=0.19.1",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"pytest-xdist",
"mock>=1.0.1",
"coverage>=3.7",
"keyrings.alt",
"tox",
]
[project.scripts]
coursera-helper= "coursera_helper.coursera_dl:main"
[project.urls]
Homepage = "https://github.com/csyezheng/coursera-helper"
[tool.hatch.version]
path = "coursera_helper/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/coursera_helper",
"/test"
]
[tool.hatch.build.targets.wheel]
packages = ["/coursera_helper"]