forked from coursera-dl/coursera-dl
-
-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathpyproject.toml
71 lines (64 loc) · 1.65 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cs-dlp"
dynamic = ["version"]
description = "Script for downloading Coursera.org videos and naming them."
readme = "README.md"
license = {file = "LICENSE"}
maintainers = [
{ name = "Raffaele Mancuso", 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.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Education",
]
dependencies = [
"attrs>=18.1.0",
"beautifulsoup4>=4.1.3",
"browser_cookie3>=0.19.0",
"configargparse>=0.12.0",
"pyasn1>=0.1.7",
"requests>=2.20",
"urllib3>=1.23",
]
[project.optional-dependencies]
dev = [
"coverage>=3.7",
"mock>=1.0.1",
"pytest",
"pytest-cov",
"pytest-xdist",
"tox",
]
[project.scripts]
cs-dlp = "cs_dlp.main:main"
[project.urls]
Homepage = "https://github.com/raffaem/cs-dlp"
[tool.hatch.version]
path = "cs_dlp/libs/version.py"
[tool.hatch.build]
include = [
"/cs_dlp"
]