-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (52 loc) · 1.02 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
[tool.poetry]
name = "spoticli"
version = "0.1.0"
description = "A command-line tool for Spotify"
authors = ["Joe Bonneau <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.9"
spotipy = "^2.18.0"
click = "^8.0.1"
tabulate = "^0.8.9"
tqdm = "^4.62.1"
types-tabulate = "^0.8.2"
appdirs = "^1.4.4"
[tool.poetry.dev-dependencies]
black = "^22.1.0"
mypy = "^0.931"
isort = "^5.10.1"
flake8 = "^4.0.1"
pytest = "^7.0.1"
pre-commit = "^2.17.0"
pytest-cov = "^3.0.0"
[tool.poetry.scripts]
spoticli = "spoticli:spoticli.main"
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88
[tool.mypy]
python_version = "3.9"
files = "spoticli"
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = "tests"
[tool.black]
line_length = 88
exclude = '''
/(
\.git
| \.mypy_cache
| \.venv
| _build
| build
| dist
)/
'''
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"