cic-utils/pyproject.toml

40 lines
1021 B
TOML
Raw Permalink Normal View History

2022-02-22 14:07:49 +01:00
[tool.poetry]
name = "cic-utils"
version = "0.2.5"
2022-02-22 14:07:49 +01:00
description = ""
authors = ["William Luke <williamluke4@gmail.com>"]
license = "GPL-3.0-or-later"
readme = "Readme.md"
repository = "https://git.grassecon.net/grassrootseconomics/cic-utils"
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.dev-dependencies]
pytest = "6.2.5"
pytest-cov = "2.10.1"
2022-02-25 07:33:51 +01:00
python-semantic-release = "^7.25.2"
2022-02-28 13:27:55 +01:00
pylint = "^2.12.2"
black = {version = "^22.1.0", allow-prereleases = true}
2022-02-22 14:07:49 +01:00
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "-x --cov=cic_utils --cov-fail-under=97 --cov-report term-missing"
testpaths = ["tests"]
[tool.semantic_release]
version_variable = [
"cic_utils/__init__.py:__version__",
2022-02-23 08:59:18 +01:00
"pyproject.toml:version",
2022-02-22 14:07:49 +01:00
]
version_source = "commit"
branch = "main"
2022-02-25 08:13:27 +01:00
upload_to_repository=true
2022-02-22 14:07:49 +01:00
upload_to_release = true
build_command = "pip install poetry && poetry build"
hvcs="gitea"
hvcs_domain = "git.grassecon.net"
2022-02-23 08:34:22 +01:00
check_build_status=false