-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (48 loc) · 1.01 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
46
47
48
49
50
51
52
53
54
[tool.poetry]
name = "damastes"
version = "0.9.5"
description = "Damastes a.k.a. Procrustes, audiobook builder: copy and edit on the fly"
authors = ["Tyrn <[email protected]>"]
license = "MIT"
readme = "README.rst"
homepage = "https://github.com/Tyrn/damastes"
[tool.poetry.dependencies]
python = "^3.12"
mutagen = "^1.46"
yaspin = "^2.3.0"
click = "^8.1.3"
[tool.poetry.scripts]
damastes = "damastes.main:main"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3"
mypy = "^1.3.0"
pytest-mock = "^3.10.0"
pytest-cov = "^4.1.0"
black = "^23.3.0"
pre-commit = "^3.3.2"
pylint = "^2.17.4"
pyright = "^1.1.314"
virtualenvwrapper = "^4.8.4"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.black]
line-length = 88
target-version = ['py311']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
)
'''