-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (71 loc) · 1.74 KB
/
pyproject.toml
File metadata and controls
77 lines (71 loc) · 1.74 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[project]
name = "iamsystem"
version = "0.6.1"
authors = [
{ name="Sebastien Cossin", email="cossin.sebastien@gmail.com" },
]
description = "A python implementation of IAMsystem algorithm"
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
keywords = ["NLP", "semantic annotation", "entity linking"]
dependencies = [
"anyascii",
"pysimstring",
"spellwise",
"typing_extensions",
]
[project.optional-dependencies]
dev = [
"black",
"flake8",
"pre-commit",
]
doc = [
"sphinx",
"sphinx-rtd-theme",
]
tests = [
"nltk",
"spacy",
]
[project.urls]
"Homepage" = "https://github.com/scossin/iamsystem_python"
"Bug Tracker" = "https://github.com/scossin/iamsystem_python/issues"
[tool.black]
line-length = 79
[tool.isort]
atomic=true
force_single_line=true
lines_after_imports=2
lines_between_types=1
use_parentheses=true
known_first_party="interrogate"
known_third_party=["attr", "click", "py", "pytest", "setuptools", "tabulate"]
[tool.interrogate]
ignore-init-method = true
ignore-init-module = true
ignore-magic = false
ignore-semiprivate = false
ignore-private = false
ignore-module = true
ignore-nested-functions = true
ignore-property-decorators = false
fail-under = 95
exclude = ["docs/", "examples/"]
verbose = 0
omit-covered-files = false
quiet = false
whitelist-regex = []
ignore-regex = ["[A-Za-z]+Test$"]
color = true