-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
37 lines (33 loc) · 876 Bytes
/
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
[tool.poetry]
name = "dogbarking"
version = "0.1.0"
description = "Plays a sound when your dog is barking. Logs data and emails it to you."
authors = ["Ryan Peach <rgpeach10@gmail.com>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
streamlit = "^1.32.2"
typer = "^0.9.0"
toml = "^0.10.2"
pydantic = {extras = ["email"], version = "^2.6.4"}
numpy = "^1.26.4"
pyaudio = "^0.2.14"
typer-config = "^1.4.0"
ruff = "^0.3.3"
loguru = "^0.7.2"
soundfile = "^0.12.1"
croniter = "^2.0.2"
[tool.poetry.group.dev.dependencies]
mypy = "^1.9.0"
pre-commit = "^3.6.2"
types-pyaudio = "^0.2.16.20240106"
types-toml = "^0.10.8.20240310"
ruff = "^0.3.3"
types-croniter = "^2.0.0.20240106"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
plugins = ["numpy.typing.mypy_plugin"]
ignore_missing_imports = true