-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
32 lines (29 loc) · 992 Bytes
/
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
[tool.poetry]
name = "lastfmcollagegenerator"
version = "0.4.13 "
description = "Python library to build Last.fm collages"
authors = ["Pau Riera <pau.riera.forteza@gmail.com>"]
readme = "README.md"
keywords = ["lastfm", "music", "collage", "album", "cover", "artist", "musicbucket", "musicbucket.net"]
repository = "https://github.com/paurieraf/lastfm-collage-generator"
homepage = "https://github.com/paurieraf/lastfm-collage-generator"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
packages = [
{ include = "lastfmcollagegenerator", from = "src" }
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/paurieraf/lastfm-collage-generator/issues"
[tool.poetry.dependencies]
python = "^3.8"
requests = "==2.32.3"
pylast = "==5.3.0"
Pillow = "==10.4.0"
beautifulsoup4 = "==4.12.3"
html5lib = "1.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"