-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
43 lines (39 loc) · 1.25 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
[tool.poetry]
name = "PyQQMusicApi"
version = "0.1.0"
description = "QQ音乐API封装库"
authors = ["Luren <[email protected]>"]
license = "MIT"
readme = "README.md"
maintainers = ["Luren <[email protected]>"]
homepage = "https://github.com/luren-dc/QQMusicApi"
repository = "https://github.com/luren-dc/QQMusicApi"
documentation = "https://github.com/luren-dc/QQMusicApi"
keywords = ["music", "api", "qqmusic", "tencentmusic"]
classifiers = [
"Development Status :: 4 - Beta",
"Natural Language :: Chinese (Simplified)",
"License :: OSI Approved :: MIT License",
"Framework :: Pytest",
"Framework :: aiohttp",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.8"
cryptography = "^41.0.2"
requests = "^2.31.0"
aiohttp = "^3.8.5"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pytest-asyncio = "^0.21.1"
qrcode = {extras = ["pil"], version = "^7.4.2"}
pyzbar = "^0.1.9"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"