forked from darknessomi/musicbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (46 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
49
50
[tool.poetry]
name = "NetEase-MusicBox"
packages = [
{include = "NEMbox"},
]
version = "0.3.1"
# docs
authors = [
"omi <[email protected]>",
"Weiliang Li <[email protected]>",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: Chinese (Simplified)",
"Operating System :: OS Independent",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Multimedia :: Sound/Audio",
]
description = "A sexy command line interface musicbox"
keywords = ["music", "netease", "cli", "player"]
license = "MIT"
maintainers = [
"omi <[email protected]>",
"Weiliang Li <[email protected]>",
]
readme = "README.md"
repository = "https://github.com/darknessomi/musicbox"
[tool.poetry.dependencies]
fuzzywuzzy = "^0.18.0"
importlib-metadata = "^2.0.0"
pycryptodomex = "^3.9.8"
python = "^3.6"
python-Levenshtein = "^0.12.0"
requests = "^2.24.0"
requests-cache = "^0.5.2"
[tool.poetry.dev-dependencies]
black = {version = "^20.8b1", python = "^3.7"}
flake8 = "^3.8.4"
mypy = "^0.782"
pytest = "^6.1.1"
[tool.poetry.scripts]
musicbox = "NEMbox.__main__:start"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]