-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
81 lines (73 loc) · 1.83 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[project]
name = "async-pixiv"
version = "1.0.1"
description = "Async Pixiv API for Python"
authors = [
{ name = "Arko", email = "[email protected]" },
]
dependencies = [
"arko-wrapper>=0.4.1",
"pydantic[email]>=2.5.3",
"aiofiles>=24.1.0",
"httpx>=0.27.0",
"aiohttp-socks>=0.9.0",
"msgspec>=0.18.0",
"aiolimiter>=1.1.0",
"requests>=2.32.0",
"python-ffmpeg>=2.0.12, <3.0.0",
"pytz>=2024.2",
"tzlocal>=5.2",
]
requires-python = ">=3.12"
readme = "README.md"
license = { text = "MIT" }
maintainers = [
{ name = "Karako", email = "[email protected]" },
]
keywords = ["pixiv", "async", "pixiv-api"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.optional-dependencies]
speedups = [
"regex",
"uvloop<1.0.0,>=0.16.0; sys_platform != \"win32\""
]
dev = [
"pytest<9.0,>=8.0",
"black",
"pytest-asyncio<0.24.0,>=0.23.5",
"pytest-env>=1.1.3",
]
[project.urls]
homepage = "https://github.com/ArkoClub/async-pixiv"
repository = "https://github.com/ArkoClub/async-pixiv"
[tool.pdm]
distribution = true
[[tool.pdm.source]]
name = "official-pypi"
url = "https://pypi.python.org/simple"
verify_ssl = true
[tool.pdm.build]
includes = ["src/async_pixiv", "LICENSE"]
[tool.black]
line-length = 88
target-version = ['py312']
include = '\.pyi?$'
[tool.pytest.ini_options]
pythonpath = [
"."
]
asyncio_mode = "auto"
log_cli = true
log_cli_level = "INFO"
log_cli_format = "%(message)s"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"