-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
101 lines (85 loc) · 2.09 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[project]
name = "suffix-tree"
dynamic = ["version"]
authors = [
{ name="Marcello Perathoner", email="marcello@perathoner.de" },
]
description = "A Generalized Suffix Tree for any iterable, with Lowest Common Ancestor retrieval"
readme = "README.rst"
requires-python = ">=3.9"
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Text Processing :: Indexing",
"Topic :: Text Processing :: Linguistic",
]
keywords = [
"suffix",
"tree",
"suffixtree",
"ukkonen",
"gusfield",
"lca"
]
[project.urls]
"Homepage" = "https://github.com/cceh/suffix-tree"
"Bug Tracker" = "https://github.com/cceh/suffix-tree/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/suffix_tree/_version.py"
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/docs/_build",
]
[tool.hatch.build.targets.wheel]
packages = ["src/suffix_tree"]
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"raise NotImplemented",
]
[tool.black]
[tool.mypy]
ignore_missing_imports = true
[tool.pylint.basic]
disable = [
"invalid-name",
"unspecified-encoding",
"pointless-string-statement",
"too-many-branches",
"too-many-statements"
]
[tool.pylint.format]
max-line-length = 88
[tool.pydocstyle]
add_ignore = "D105,D107,D202"
[tool.doc8]
max-line-length = 88
[tool.tox]
legacy_tox_ini = """
[tox]
isolated_build = True
envlist = pypy39,py39,py310,py311,py312
skip_missing_interpreters = True
[testenv]
allowlist_externals = make
deps =
pytest
requests
commands = make BIN= test
"""