-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (34 loc) · 920 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
38
39
40
41
42
43
[build-system]
requires = ["setuptools>=62.6.0"]
build-backend = "setuptools.build_meta"
[project]
name = "Bertopic clustering"
dynamic = ["version"]
authors = [
{ name = "Sergio Frayle P\u00e9rez" },
]
readme = "README.md"
requires-python = ">=3.11"
[tool.bumpversion]
current_version = "0.0.4"
commit = false
tag = false
[tool.mypy]
mypy_path = "src"
ignore_missing_imports = false
check_untyped_defs = true
exclude = '^data\/*'
[[tool.mypy.overrides]]
module = ["transformers", "mlflow", "bertopic", "gensim", "gensim.models.coherencemodel", "sklearn.metrics"]
ignore_missing_imports = true
[tool.ruff]
exclude = [".git", "__pycache__", ".venv", "venv", "src/data_processing/stop_words.py"]
line-length = 88
indent-width = 4
src = ["src/"]
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "E501", "I001"]
[tool.ruff.lint.isort]
known-first-party = ["src"]
[tool.setuptools]
include-package-data = false