turntable/pyproject.toml

28 lines
621 B
TOML
Raw 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]
2021-02-10 04:59:18 +00:00
python = "~3.8"
numpy = "^1.17.2"
2020-08-30 03:46:21 +00:00
pyalsaaudio = "^0.9.0"
2021-02-10 04:59:18 +00:00
pydejavu = {git = "https://github.com/correl/dejavu.git", branch = "requirements"}
2020-08-30 03:46:21 +00:00
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"