-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (35 loc) · 1.08 KB
/
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
38
39
40
[tool.poetry]
name = "akande"
version = "0.0.4"
description = "An innovative, open-source voice assistant powered by OpenAI's GPT-3, designed to provide interactive, conversational experiences through both voice and text inputs."
authors = ["Sebastien Rousseau <[email protected]>"]
license = "Apache Software License"
readme = "README.md"
repository = "https://github.com/sebastienrousseau/akande"
homepage = "https://akande.co"
[tool.poetry.dependencies]
openai = "1.12.0"
py3-tts = "3.5"
pyaudio = "0.2.14"
python = "^3.8"
python-dotenv = "1.0.1"
pyttsx4 = "3.0.15"
reportlab = "4.1.0"
speechrecognition = "3.10.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 72
target-version = ['py38', 'py39', 'py310']
[tool.isort]
profile = "black"
line_length = 72
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
combine_as_imports = true
known_first_party = "akande"
[tool.pytest]
addopts = "--cov=akande --cov-report=term-missing --cov-report=xml --cov-report=html --cov-fail-under=100"
testpaths = "tests"