-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
43 lines (36 loc) · 988 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
33
34
35
36
37
38
39
40
41
42
43
[tool.poetry]
name = "bbc_meet_spotify"
version = "0.1.0"
description = "Scrapes BBC sounds playlists and adds them to a spotify playlist"
authors = ["Stef Piatek <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/stefpiatek/bbc_meet_spotify"
repository = "https://github.com/stefpiatek/bbc_meet_spotify"
keywords = ["bbc sounds", "spotify"]
[tool.poetry.dependencies]
python = "^3.7"
typer = "^0.3.2"
loguru = "^0.5.3"
spotipy = "^2.22.1"
beautifulsoup4 = "^4.9.3"
toml = "^0.10.2"
ordered-set = "^4.0.2"
[tool.poetry.dev-dependencies]
pytest = "^7.2.0"
coverage = "^5.3.1"
pytest-cov = "^2.10.1"
loguru-caplog = "^0.2.0"
[tool.coverage.paths]
source = ["src"]
[tool.coverage.run]
branch = true
source = ["bbc_meet_spotify"]
[tool.coverage.report]
show_missing = true
fail_under = 60
[tool.poetry.scripts]
bbc-meet-spotify = "bbc_meet_spotify.console:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"