-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
37 lines (31 loc) · 1.03 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
[tool.poetry]
name = "karaoke-lyrics-processor"
version = "0.4.1"
description = "Process song lyrics to prepare them for karaoke video production, e.g. by splitting long lines"
authors = ["Andrew Beveridge <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "karaoke_lyrics_processor" }]
homepage = "https://github.com/karaokenerds/karaoke-lyrics-processor"
repository = "https://github.com/karaokenerds/karaoke-lyrics-processor"
documentation = "https://github.com/karaokenerds/karaoke-lyrics-processor/blob/main/README.md"
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
pyperclip = ">=1.8"
python-docx = ">=1"
striprtf = ">=0.0.27"
docx2txt = ">=0.8"
[tool.poetry.group.dev.dependencies]
black = ">=23"
poetry = "*"
pytest = ">=8"
[tool.poetry.scripts]
karaoke-lyrics-processor = 'karaoke_lyrics_processor.cli:main'
[tool.black]
line-length = 140
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"