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
|
[build-system]
requires = [
"setuptools>=62.1",
"setuptools_scm[toml]>=8.0.0",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "parfive"
description = "A HTTP and FTP parallel file downloader."
requires-python = ">=3.9"
readme = { file = "README.rst", content-type = "text/x-rst" }
license = { file = "LICENSE" }
authors = [
{ name = "Stuart Mumford", email = "stuart@cadair.com" },
]
dependencies = [
"tqdm >=4.27.0",
"aiohttp",
]
dynamic = ["version"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"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]
parfive = "parfive.main:main"
[project.optional-dependencies]
ftp = [
"aioftp >=0.17.1",
]
tests = [
"pytest",
"pytest-localserver",
"pytest-asyncio",
"pytest-socket",
"pytest-cov",
"aiofiles",
]
docs = [
"sphinx",
"sphinx-automodapi",
"sphinx-autodoc-typehints",
"sphinx-contributors",
"sphinx-book-theme",
]
[project.urls]
repository = "https://parfive.readthedocs.io/"
[tool.setuptools]
zip-safe = false
include-package-data = true
[tool.setuptools.packages.find]
include = ["parfive*"]
[tool.setuptools_scm]
version_file = "parfive/_version.py"
|