-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
50 lines (44 loc) · 1.04 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
[metadata]
name = powerspot
version = 0.2
author = "Théo Delecour"
author_email = "[email protected]"
description = CLI for automated operations with Spotify
long_description = file: README.md, LICENCE
long_description_content_type = text/markdown
license = MIT
url = https://github.com/theodcr/powerspot
classifiers =
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
[options]
zip_safe = False
include_package_data = True
python_requires = >= 3.6
install_requires =
Click
tabulate
spotipy
packages = find:
[options.extras_require]
dev =
black
flake8
isort
[options.entry_points]
console_scripts =
powerspot = powerspot.cli:main
[mypy]
disallow_untyped_defs = True
ignore_missing_imports = True
warn_unused_configs = True
[isort]
line_length = 88
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
[flake8]
max-line-length = 88
exclude = .git, *.egg-info, __pycache__, docs, build, dist, .mypy_cache, .venv