Create and display maps with points in Wagtail
https://framagit.org/cliss21/wagtail-maps
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
839 B
40 lines
839 B
[build-system] |
|
requires = ["setuptools >=42", "wheel", "setuptools_scm[toml] >=3.4"] |
|
build-backend = "setuptools.build_meta" |
|
|
|
[tool.setuptools_scm] |
|
|
|
[tool.black] |
|
line-length = 80 |
|
skip-string-normalization = true |
|
exclude = ''' |
|
/( |
|
\.git |
|
| venv |
|
| migrations |
|
)/ |
|
''' |
|
|
|
[tool.isort] |
|
profile = 'black' |
|
line_length = 80 |
|
known_django = 'django' |
|
known_wagtail = 'wagtail' |
|
sections = [ |
|
'FUTURE', 'STDLIB', 'DJANGO', 'WAGTAIL', 'THIRDPARTY', 'FIRSTPARTY', 'LOCALFOLDER' |
|
] |
|
skip_glob = '**/migrations/*.py' |
|
|
|
[tool.pytest.ini_options] |
|
addopts = '--ds=tests.settings' |
|
python_files = ['test_*.py'] |
|
testpaths = ['tests'] |
|
markers = ['wip: mark a test as a work in progress'] |
|
|
|
[tool.coverage.run] |
|
branch = true |
|
source = ['wagtail_maps'] |
|
|
|
[tool.coverage.report] |
|
exclude_lines = ['# pragma: no cover', 'raise NotImplementedError'] |
|
show_missing = true
|
|
|