This repository has been archived by the owner on Oct 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
71 lines (61 loc) · 1.72 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
[build-system]
requires = [ "poetry>=1.0.0" ]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "google-music-scripts"
description = "A CLI utility for interacting with Google Music."
version = "4.5.0"
license = "MIT"
authors = ["thebigmunch <mail@thebigmunch.me>"]
readme = "README.md"
repository = "https://github.com/thebigmunch/google-music-scripts"
homepage = "https://github.com/thebigmunch/google-music-scripts"
[tool.poetry.dependencies]
python = "^3.6"
appdirs = "^1.0"
attrs = ">=18.2,<19.4"
audio-metadata = ">=0.10"
google-music = "^3.4"
google-music-proto = "^2.8"
google-music-utils = "^2.5"
loguru = "0.4.*"
pendulum = ">=2.0,<=3.0,!=2.0.5,!=2.1.0" # Work around https://github.com/sdispater/pendulum/issues/454
pprintpp = "0.*"
natsort = ">=5.0,<8.0"
tbm-utils = "^2.3"
tomlkit = "^0.5"
flake8 = { version = "^3.5", optional = true }
flake8-builtins = { version = "^1.0", optional = true }
flake8-comprehensions = { version = ">=2.0,<=4.0", optional = true }
flake8-import-order = { version = "^0.18", optional = true }
flake8-import-order-tbm = { version = "^1.2", optional = true }
nox = { version = "^2019", optional = true }
sphinx = { version = "^2.0", optional = true}
sphinx-argparse = { version = "^0.2", optional = true }
sphinx-material = { version = "0.*", optional = true }
[tool.poetry.extras]
dev = [
"flake8",
"flake8-builtins",
"flake8-comprehensions",
"flake8-import-order",
"flake8-import-order-tbm",
"nox",
"sphinx",
"sphinx-argparse",
"sphinx-material",
]
doc = [
"sphinx",
"sphinx-argparse",
"sphinx-material",
]
lint = [
"flake8",
"flake8-builtins",
"flake8-comprehensions",
"flake8-import-order",
"flake8-import-order-tbm",
]
[tool.poetry.scripts]
gms = "google_music_scripts.cli:run"