-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (42 loc) · 1.07 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
[project]
name = "console-songs"
version = "2024.11.03"
dependencies = [
"python-dotenv",
"requests",
"lyricsgenius",
"side-by-side",
"beautifulsoup4"
]
requires-python = ">=3.11"
authors = [
{name = "Patrick Kubiak", email = "epicpatka@gmail.com"}
]
maintainers = [
{name = "Patrick Kubiak", email = "epicpatka@gmail.com"}
]
description = "Given a song and artist, fetches lyrics from Genius, translates them to English using Azure AI Translator, and displays original and translated lyrics side-by-side in the console."
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["console", "songs", "genius-lyrics-api", "azure-translator"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Environment :: Console"
]
[project.optional-dependencies]
cli = [
"pytest",
"pytest-cov",
"black",
"build",
"twine"
]
[project.scripts]
console-songs = "songs:main"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--cov=src/ --cov-report term-missing"
testpaths = [
"src/"
]