-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (26 loc) · 874 Bytes
/
pyproject.toml
File metadata and controls
34 lines (26 loc) · 874 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
[build-system]
requires = ["setuptools>=69.0.0", "wheel>=0.43.0"]
build-backend = "setuptools.build_meta"
[project]
name = "AndroidFileHostScraper"
version = "3.0.0"
description = "Simple and powerful Python script to download files from AndroidFileHost by imitating their API calls."
readme = "README.md"
license = { text = "Apache-2.0" }
authors = [
{ name = "codefl0w", email = "fl0w_dev@protonmail.com" }
]
requires-python = ">=3.8"
dependencies = [
"httpx>=0.25.2",
"h2>=4.1.0",
"beautifulsoup4>=4.12.3"
]
[project.scripts]
afhscraper = "AFHscraper:main"
androidfilehostscraper = "AFHscraper:main"
[project.urls]
Homepage = "https://github.com/codefl0w/AndroidFileHostScraper"
Repository = "https://github.com/codefl0w/AndroidFileHostScraper"
Issues = "https://github.com/codefl0w/AndroidFileHostScraper/issues"
Donate = "https://buymeacoffee.com/fl0w"