turntable/pyproject.toml

27 lines
581 B
TOML
Raw Permalink Normal View History

2020-08-30 03:46:21 +00:00
[tool.poetry]
name = "turntable"
2020-09-26 05:45:12 +00:00
version = "1.1.1"
2020-08-30 03:46:21 +00:00
description = "Turntable audio monitoring"
authors = ["Correl Roush <correl@gmail.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8"
pyalsaaudio = "^0.9.0"
pydejavu = {git = "https://github.com/worldveil/dejavu.git"}
requests = "^2.24.0"
2020-09-05 00:05:18 +00:00
pygame = "^1.9.6"
2020-08-30 03:46:21 +00:00
[tool.poetry.dev-dependencies]
black = "^20.8b1"
mypy = "^0.782"
2020-09-02 03:07:04 +00:00
pytest = "^6.0.1"
2020-08-30 03:46:21 +00:00
[tool.poetry.scripts]
2020-09-02 13:15:27 +00:00
turntable = "turntable.gui:main"
turntable-cli = "turntable.cli:main"
2020-08-30 03:46:21 +00:00
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"