-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (32 loc) · 909 Bytes
/
pyproject.toml
File metadata and controls
34 lines (32 loc) · 909 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
[project]
name = "python-downloader"
version = "0.1.2"
description = "A simple but pretty Python-based multi-URL file downloader"
readme = "README.md"
authors = [
{ name = "Daniel Fox", email = "danudey@me.com"}
]
requires-python = ">=3.8"
license = "MIT"
dependencies = [
"browser-cookie3>=0.20.1",
"requests>=2.32.3",
"rich>=14.0.0",
]
classifiers = [
"Typing :: Typed",
"Environment :: Console",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.scripts]
download = "pydownloader.downloader:main"
[tool.uv]
package = true