-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
84 lines (74 loc) · 1.53 KB
/
setup.cfg
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
[metadata]
name = linglit
version = 1.7.1
author = Robert Forkel
author_email = [email protected]
description = Programmatic access to linguistic literature
classifiers =
Programming Language :: Python :: 3
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
Programming Language :: Python :: 3.13
License :: OSI Approved :: Apache Software License
[options]
packages = find:
package_dir =
= src
python_requires = >=3.8
install_requires =
tqdm
clldutils >= 3.12
cldfzenodo
attrs
csvw
TexSoup
pylatexenc
bs4
lxml
pyglottolog
pycldf
pyigt>=2.1
thefuzz
unidecode
[options.entry_points]
console_scripts =
linglit = linglit.__main__:main
[options.package_data]
linglit = cfg/*/*
[options.packages.find]
where = src
[options.extras_require]
dev =
flake8
build
twine
test =
pytest >= 4.6
pytest-cov
pytest-mock
tox
speedup =
thefuzz[speedup]
[tool:pytest]
minversion = 3.3
testpaths = tests
addopts = --cov=linglit --cov-report=term-missing
filterwarnings =
ignore::UserWarning
[coverage:report]
show_missing = true
skip_covered = true
[flake8]
ignore = E126, E128, E731, W503
max-line-length = 100
exclude = .tox
[tox:tox]
envlist = py38, py39, py310, py311, py312, py313
isolated_build = false
skip_missing_interpreter = true
[testenv]
deps = .[test]
commands = pytest {posargs}