-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
pyproject.toml
46 lines (39 loc) · 1.23 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
[tool.poetry]
name = "swaglyrics"
version = "1.2.2"
description = "Fetch the currently playing song from Spotify and display the lyrics in terminal or a browser tab. Very fast."
authors = ["Aadi Bajpai <[email protected]>"]
license = "MIT"
readme = "README.md"
include = ["swaglyrics/static/*", "swaglyrics/templates/*", "swaglyrics/unsupported.txt", "swaglyrics/USING.txt"]
packages = [
{ include = "swaglyrics" },
]
repository = "https://github.com/SwagLyrics/SwagLyrics-For-Spotify"
documentation = "https://github.com/SwagLyrics/SwagLyrics-For-Spotify/blob/master/README.md"
keywords = ['spotify', 'swaglyrics', 'python', 'lyrics']
classifiers= [
"Framework :: Flask",
"Operating System :: OS Independent",
"Intended Audience :: End Users/Desktop",
]
[tool.poetry.scripts]
swaglyrics = 'swaglyrics.__main__:main'
[tool.poetry.dependencies]
python = "^3.7"
requests = "^2.27.1"
beautifulsoup4 = "^4.10.0"
colorama = "^0.4.4"
Flask = "^2.0.2"
swspotify = "^1.2.2"
Unidecode = "^1.3.2"
[tool.poetry.dev-dependencies]
mock = "^4.0.3"
pytest = "^6.2.5"
pytest-cov = "^3.0.0"
blinker = "^1.4"
Flask-Testing = "^0.8.1"
mypy = "^0.931"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"