-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (39 loc) · 1.25 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
41
42
43
44
[tool.poetry]
name = "audioanalyser"
version = "0.0.6"
description = "Audio Analyser: Leverages the power of Microsoft Azure's advanced AI services to transform your audio data into valuable insight reports in no time through automatic speech-to-text, text analysis, and recommendations."
authors = ["Sebastien Rousseau <sebastian.rousseau@gmail.com>"]
license = "Apache Software License"
readme = "README.md"
repository = "https://github.com/sebastienrousseau/audioanalyser"
homepage = "https://audioanalyser.co"
[tool.poetry.dependencies]
aiohttp = "3.10.2"
asyncio = "3.4.3"
azure-ai-textanalytics = "5.3.0"
azure-cognitiveservices-speech = "1.35.0"
azure-common = "1.1.28"
azure-core = "1.30.0"
cherrypy = "18.9.0"
datetime = "5.4"
openai="1.11.1"
python = "^3.9"
python-dotenv="1.0.1"
requests = "2.32.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 72
target-version = ['py39']
[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 = "audioanalyser"
[tool.pytest]
addopts = "--cov=audioanalyser --cov-report=term-missing --cov-report=xml --cov-report=html --cov-fail-under=100"
testpaths = "tests"