forked from coursera-dl/edx-dl
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpyproject.toml
75 lines (68 loc) · 1.77 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "edx-helper"
dynamic = ["version"]
description = "Simple tool to download video and lecture materials from edx.org."
readme = "README.md"
license = {file = "LICENSE"}
maintainers = [
{ name = "Ye Zheng", email = "csyezheng@gmail.com" },
]
keywords = [
"MOOCs",
"edX",
"edX-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.7",
"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.6.0",
"html5lib>=1.0.1",
"six>=1.11.0",
"youtube_dl>=2021.12.17",
"requests>=2.18.4",
"tqdm>=4.66.1",
]
[project.optional-dependencies]
dev = [
"coverage>=3.7",
"mock>=1.0.1",
"pytest>=2.5",
"pytest-cov",
"pytest-xdist",
"tox",
"pandoc",
]
[project.scripts]
edx-helper = "edx_helper.edx_dl:main"
[project.urls]
Homepage = "https://github.com/csyezheng/edx-helper"
[tool.hatch.version]
path = "edx_helper/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/edx_helper",
"/test"
]
[tool.hatch.build.targets.wheel]
packages = ["/edx_helper"]