-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
86 lines (75 loc) · 1.7 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
85
86
[metadata]
name = clld-ipachart-plugin
version = 0.3.1.dev0
license_file = LICENSE
author = Robert Forkel
author_email = [email protected]
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Science/Research
License :: OSI Approved :: Apache Software License
Natural Language :: English
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
description = Render IPA charts in clld apps.
long_description = file: README.md
long_description_content_type = text/markdown
project_urls =
Bug Tracker = https://github.com/clld/clld-ipachart-plugin/issues
url = https://github.com/clld/clld-ipachart-plugin
[options]
zip_safe = False
include_package_data = True
packages = find:
package_dir =
=src
install_requires =
clld>=7
pyclts
pycldf
sqlalchemy
zope.interface
[options.extras_require]
dev =
flake8
twine
wheel
build
test =
pytest
pytest-mock
pytest-cov
tox
[options.packages.find]
include = clld_ipachart_plugin
where = src
[bdist_wheel]
universal = 1
[easy_install]
zip_ok = false
[tool:pytest]
addopts = --cov
testpaths = tests
filterwarnings =
ignore::sqlalchemy.exc.RemovedIn20Warning
[tox:tox]
envlist = py38, py39, py310, py311, py312
isolated_build = true
skip_missing_interpreter = true
[testenv]
deps = .[test]
commands = pytest {posargs}
[flake8]
ignore = E711,E712,D100,D101,D103,D102,D301
max-line-length = 100
exclude = .tox
[coverage:run]
source =
clld_ipachart_plugin
tests
[coverage:report]
show_missing = true