|
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "downie"
|
|
version = "1.0.0"
|
|
description = "A fast async download parser with concurrency control. Written for specific use case to crawl a certain site. Will only download urls under the base url. Remote links are not followed."
|
|
readme = "README.md"
|
|
requires-python = ">=3.7"
|
|
dependencies = [
|
|
"aiohttp",
|
|
"beautifulsoup4",
|
|
"aiofiles",
|
|
"app @ git+https://retoor.molodetz.nl/retoor/app.git"
|
|
]
|
|
authors = [
|
|
{ name = "retoor", email = "retoor@molodetz.nl" }
|
|
]
|
|
|
|
[project.scripts]
|
|
downie = "downie.__main__:main"
|
|
|
|
[project.optional-dependencies]
|
|
autocomplete = [
|
|
"argcomplete>=1.12.3"
|
|
]
|
|
|
|
[tool.setuptools]
|
|
package-dir = {"" = "src"}
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|