-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (35 loc) · 1.12 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
[tool.poetry]
name = "lyrics_search"
version = "0.1.0"
description = "CLI tool to generate playlists of songs whose lyrics contain a given query"
authors = ["Thomas Chamberlin <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/tchamberlin/lyrics_search"
keywords = ["lyrics"]
[tool.poetry.dependencies]
python = "^3.8"
python-dotenv = "^0.15.0"
spotipy = "^2.16.1"
pycld3 = "^0.20"
tqdm = "^4.56.0"
fuzzywuzzy = {extras = ["speedup"], version = "^0.18.0"}
Unidecode = "^1.1.2"
inflect = "^5.0.2"
lemminflect = "^0.2.2"
[tool.poetry.dev-dependencies]
ipython = "^7.19.0"
ipdb = "^0.13.4"
# NOTE: 0.18.0 breaks ipython. Once that's fixed, remove this
jedi = "<0.18"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
# Create a lyrics_search wrapper scripts that executes lyrics_search.lyrics_search
lyrics-search = 'lyrics_search:lyrics_search.main'
[tool.isort]
# See: https://pycqa.github.io/isort/docs/configuration/options/#example-pyprojecttoml
profile = "black"
# vert-hanging -- for black compatibility
multi_line_output = 3