-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
37 lines (33 loc) · 958 Bytes
/
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
[tool.poetry]
name = "fuo_kuwo"
version = "0.2.1"
description = "Kuwo music provider for FeelUOwn music player"
authors = ["feeluown team"]
readme = "README.md"
license = "GPL"
homepage = "https://github.com/feeluown/feeluown-kuwo"
keywords = ["feeluown", "plugin", "kuwo"]
packages = [{ include = "fuo_kuwo" }]
include = ['assets/*.svg']
classifiers = [
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3 :: Only'
]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
feeluown = ">=3.8.12"
marshmallow = "*"
requests = "*"
[tool.poetry.group.dev.dependencies]
pytest = "*"
pyqt5 = "*"
pre-commit = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.plugins."fuo.plugins_v1"]
"kuwo" = "fuo_kuwo"