-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 749 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 749 Bytes
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
[tool.poetry]
name = "pdf-to-mp3"
version = "0.1.1"
description = "PDF to mp3 converter"
license = "MIT"
authors = ["t1lt-gxd <zio0@bk.ru>"]
maintainers = ["t1lt-gxd <zio0@bk.ru>"]
readme = "README.md"
repository = "https://github.com/tiIt-dev/PDFtoAudio"
keywords = ["pdf", "mp3"]
packages = [{include = "pdf_to_mp3"}]
[tool.poetry.dependencies]
python = "^3.11"
langdetect = "^1.0.9"
pdfplumber = "^0.9.0"
loguru = "^0.7.0"
gtts = "^2.3.2"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
autoflake = "^2.1.1"
[tool.poetry.scripts]
start = 'pdf-to-mp3.console:run'
black = { callable = "pdf-to-mp3:black", extras = ["."] }
tests = 'tests.test_main:run'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"