turntable/pyproject.toml
2021-02-09 23:59:18 -05:00

27 lines
621 B
TOML

[tool.poetry]
name = "turntable"
version = "1.1.1"
description = "Turntable audio monitoring"
authors = ["Correl Roush <correl@gmail.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = "~3.8"
numpy = "^1.17.2"
pyalsaaudio = "^0.9.0"
pydejavu = {git = "https://github.com/correl/dejavu.git", branch = "requirements"}
requests = "^2.24.0"
pygame = "^1.9.6"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
mypy = "^0.782"
pytest = "^6.0.1"
[tool.poetry.scripts]
turntable = "turntable.gui:main"
turntable-cli = "turntable.cli:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"