45 lines
869 B
TOML
45 lines
869 B
TOML
[tool.poetry]
|
|
name = "rupert"
|
|
version = "0.0.0"
|
|
description = ""
|
|
authors = ["Dustin C. Hatch <dustin@hatch.name>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.7"
|
|
pyudev = { version = "^0.22.0", optional = true }
|
|
rich = "^9.6.2"
|
|
typer = "^0.3.2"
|
|
pydantic = "^1.7.3"
|
|
python-libdiscid = "^2.0.1"
|
|
musicbrainzngs = "^0.7.1"
|
|
mutagen = "^1.45.1"
|
|
Pillow = {version = "^8.4.0", optional = true}
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pylint = "^2.6.0"
|
|
mypy = "^0.790"
|
|
flake8 = "^3.8.4"
|
|
rope = "^0.18.0"
|
|
|
|
[tool.poetry.scripts]
|
|
ripper = "rupert.main:main"
|
|
|
|
[tool.poetry.extras]
|
|
art = ["pillow"]
|
|
udev = ["pyudev"]
|
|
|
|
[tool.black]
|
|
line-length = 79
|
|
|
|
[tool.isort]
|
|
ensure_newline_before_comments = true
|
|
force_grid_wrap = 0
|
|
include_trailing_comma = true
|
|
line_length = 79
|
|
lines_after_imports = 2
|
|
multi_line_output = 3
|
|
|
|
[build-system]
|
|
requires = ["poetry>=0.12"]
|
|
build-backend = "poetry.masonry.api"
|