-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
60 lines (50 loc) · 1.67 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "asr-with-speech-sentiment-analysis-text-summarizer"
description = "This project aims to develop a system that integrates Automatic Speech Recognition (ASR), speech sentiment analysis, and text summarization. It will handle diverse accents, noisy environments, provide real-time sentiment analysis, and generate concise summaries."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dynamic = ["version", "dependencies", "optional-dependencies"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
optional-dependencies.dev = {file = ["requirements-dev.txt"]}
[tool.setuptools_scm]
write_to = "_version.py"
version_scheme = "post-release"
local_scheme = "no-local-version"
[tool.sqlfluff.indentation]
indented_using_on = false
indented_on_contents = false
[tool.sqlfluff.rules.L010]
capitalisation_policy = "upper"
[tool.sqlfluff.rules.L016]
ignore_comment_clauses = true
max_line_length = 79
[tool.pylint.message_control]
disable=["abstract-method",
"arguments-differ",
"import-error",
"import-self",
"fixme",
"too-few-public-methods",
"too-many-ancestors",
"too-many-arguments",
"too-many-locals",
"too-many-boolean-expressions",
"too-many-statements",]
[tool.pylint.reports]
output-format="text"
reports="no"
[tool.mypy]
python_version = 3.8
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true
files = "*.py"
exclude = ["tests/", "docs/"]