-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (32 loc) · 1006 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
[project]
name = "speech_service"
version = "0.0.1"
authors = [
{ name="André Pankraz", email="[email protected]" },
]
description = "A Speech Service using AI with current models like Whisper, NLLB etc."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dynamic = ["dependencies", "optional-dependencies.tests"]
[tool.setuptools.dynamic]
dependencies = {file = ["docker/python/requirements.txt"]}
optional-dependencies.tests = {file = ["docker/python/requirements-dev.txt"]}
[project.urls]
"Homepage" = "https://github.com/andrePankraz/speech_service"
"Bug Tracker" = "https://github.com/andrePankraz/speech_service/issues"
[tool.autopep8]
max_line_length = 120
aggressive = 3
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q -s --log-cli-level=DEBUG"
testpaths = [
"tests"
]