-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
54 lines (48 loc) · 1.07 KB
/
setup.cfg
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
[metadata] # {{{1
name = spotidry
version = 0.0.4
author = Mike Boiko
author_email = [email protected]
description = A boring Spotify CLI client
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/mikeboiko/spotidry
project_urls =
Bug Tracker = https://github.com/mikeboiko/spotidry/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options] # {{{1
packages = spotidry
python_requires = >=3.6
install_requires =
appdirs
spotipy
pyyaml
[options.entry_points] # {{{1
console_scripts =
spotidry = spotidry.__main__:main
[yapf] # {{{1
# https://github.com/google/yapf#knobs
BASED_ON_STYLE = google
SPACES_BEFORE_COMMENT = 2
COLUMN_LIMIT = 90
BLANK_LINES_AROUND_TOP_LEVEL_DEFINITION = 1
SPLIT_BEFORE_FIRST_ARGUMENT = 1
[flake8] # {{{1
# This only matters when E501 isn't suppressed
max-line-length = 90
ignore =
E116,
E124,
E127,
E261,
E302,
E305,
E402,
E501,
E701
E722,
W503,
W504,