-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
36 lines (29 loc) · 975 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "gielladetect"
description = "Language detection module based on the GiellaLT models, specifically aimed at minority and indigenous languages"
version = "1.0.3"
readme = "README.md"
license = {text="GPLv3"}
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)"
]
dependencies = [
'typing_extensions >= 4.12'
]
[project.urls]
repository = "https://github.com/NationalLibraryOfNorway/gielladetect"
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
"gielladetect.lm" = ["*.lm", "*.wm"]
[tool.pylint.'MESSAGES CONTROL']
disable = "missing-function-docstring,missing-module-docstring,missing-class-docstring,invalid-name,attribute-defined-outside-init"
[tool.flake8]
max-line-length = 100
exclude = ["__pycache__", "venv", "build"]
per-file-ignores = ["gielladetect/__init__.py:F401"]
[tool.mypy]
strict = "True"