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 2
/
Copy pathpyproject.toml
87 lines (74 loc) · 1.9 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
82
83
84
85
86
87
[build-system]
requires = [ "poetry>=1.0.0" ]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "google-music-proto"
description = "Sans-I/O wrapper of Google Music API calls."
version = "2.10.0"
license = "MIT"
authors = ["thebigmunch <[email protected]>"]
readme = "README.md"
repository = "https://github.com/thebigmunch/google-music-proto"
homepage = "https://github.com/thebigmunch/google-music-proto"
[tool.poetry.dependencies]
python = "^3.6"
attrs = ">=18.2,<19.4"
audio-metadata = ">=0.10"
marshmallow = "^2.0"
pendulum = ">=2.0,<=3.0,!=2.0.5,!=2.1.0" # Work around https://github.com/sdispater/pendulum/issues/454
protobuf = "^3.5"
tbm-utils = "^2.3"
coverage = { version = ">=5.0,<6.0", optional = true, extras = [ "toml" ] }
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.0", optional = true }
nox = { version = "^2019", optional = true }
pytest = { version = ">=4.0,<6.0", optional = true }
sphinx = { version = "^2.0", optional = true}
sphinx-material = { version = "0.*", optional = true }
[tool.poetry.extras]
dev = [
"coverage",
"flake8",
"flake8-builtins",
"flake8-comprehensions",
"flake8-import-order",
"flake8-import-order-tbm",
"nox",
"pytest",
"sphinx",
"sphinx-material",
]
doc = [
"sphinx",
"sphinx-material",
]
lint = [
"flake8",
"flake8-builtins",
"flake8-comprehensions",
"flake8-import-order",
"flake8-import-order-tbm",
]
test = [
"coverage",
"nox",
"pytest"
]
[tool.coverage.run]
branch = true
source = [ "google_music_proto" ]
omit = [
"**/__about__.py",
"**/__init__.py",
"**/constants.py",
"**/oauth.py",
"**/pb/*",
"**/mobileclient/schemas.py",
"**/mobileclient/types.py",
]
[tool.coverage.report]
precision = 2
show_missing = true