-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (42 loc) · 1.22 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
[tool.poetry]
packages = [{ include = "quickspirit" }]
package-mode = true
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
]
[project]
name = "quickspirit"
description = "Fast, Async Network & File Downloader Client In Python"
version = "2.0.2"
dynamic = [ "classifiers" ]
license = { text = "GPL-3.0-or-later" }
readme = "README.md"
authors = [{name = "DroidZed", email = "41507665+DroidZed@users.noreply.github.com"}]
keywords = ["api", "speed", "fast", "library", "networking"]
requires-python = ">=3.9"
dependencies = [
"httpx>=0.27.0",
"aiofiles>=24.1.0"
]
[project.urls]
repository = "https://github.com/DroidZed/QuickSpirit-Async"
homepage = "https://github.com/DroidZed/QuickSpirit-Async"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.8.0"
ruff = "^0.5.5"
[tool.poetry.group.test.dependencies]
pytest = "^8.3.2"
pytest-httpx = "^0.30.0"
pytest-asyncio = "^0.23.8"
pytest-aiofiles = "^0.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest]
minversion = 6.0
addopts = "-ra -q"
testpaths = ["tests"]
asyncio_mode = "strict"