-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
84 lines (73 loc) · 1.74 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 = pynumerals
version = 1.0.2.dev0
license = Apache 2.0
description = Helper library for numeralbank projects
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
License :: OSI Approved :: Apache Software License
author = Hans-Jörg Bibiko, Christoph Rzymski, Robert Forkel
keywords = data
author_email = [email protected]
url = https://github.com/numeralbank/pynumerals
project_urls =
Bug Tracker = https://github.com/numeralbank/pynumerals/issues
[options]
packages = find:
package_dir =
= src
include_package_data = true
zip_safe = false
platforms = any
python_requires = >= 3.5
install_requires =
attr
beautifulsoup4 >= 4.9.1
clldutils >= 3.5.4
pylexibank >= 2.8.2
openpyxl >= 3.0.5
python-levenshtein >= 0.12
fuzzywuzzy >= 0.18
[options.packages.find]
where = src
[options.extras_require]
dev =
flake8
build
twine
tox
test =
pytest >= 6.0.2
pytest-mock >= 3.3.1
pytest-cov >= 2.10.1
coverage >= 5.3
pyglottolog >= 3.2.2
[options.entry_points]
cldfbench.commands =
pynumerals = pynumerals.commands
[tool:pytest]
minversion = 5
testpaths = tests
addopts = --cov
[coverage:run]
source = pynumerals,tests
[coverage:report]
show_missing = true
skip_covered = true
exclude_lines =
pragma: no cover
[tox:tox]
envlist = py{36,37,38,39,310}
skip_missing_interpreters = true
isolated_build = true
[testenv]
extras = test
commands = pytest {posargs}