padpo/pyproject.toml
2020-08-25 17:52:27 +02:00

64 lines
1.5 KiB
TOML

[tool.poetry]
name = "padpo"
version = "0.8.0"
description = "Linter for gettext files"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent"
# TODO: Add more
]
authors = ["Vincent Poulailleau <vpoulailleau@gmail.com>"]
readme = "README.md"
repository = "https://github.com/vpoulailleau/padpo"
homepage = "https://github.com/vpoulailleau/padpo"
documentation = "https://github.com/vpoulailleau/padpo"
keywords = ["gettext", "linter", "grammalecte"]
license = "BSD-3-Clause"
include = ["padpo/**/*.py"]
[tool.poetry.dependencies]
python = "^3.7"
pygrammalecte = "^1.0.0"
requests = "^2.20.0"
simplelogging = "^0.10.0"
[tool.poetry.dev-dependencies]
pytest = "^6.0.0"
pytest-cov = "^2.10.1"
tox = "^3.19.0"
tox-travis = "^0.12"
[tool.poetry.scripts]
padpo = "padpo.padpo:main"
[tool.tox]
legacy_tox_ini = """
[tox]
isolated_build = True
envlist = py37, py38
[testenv]
allowlist_externals =
poetry
echo
sed
cp
changedir = {toxinidir}/tests
commands =
poetry install -v
poetry run pytest -s -vv --cov=padpo
poetry run coverage xml
echo 'fix travis bug'
sed --in-place -e 's#//home#/home#g' coverage.xml
echo 'fix codeclimate bug, use relative path'
sed --in-place -e 's#/home.*vpoulailleau/padpo/##g' coverage.xml
cp coverage.xml ../coverage.xml
"""
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"