2022-02-22 14:07:49 +01:00
|
|
|
[tool.poetry]
|
|
|
|
name = "cic-utils"
|
2022-02-25 07:35:37 +01:00
|
|
|
version = "0.2.3"
|
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-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"
|
|
|
|
upload_to_pypi = false
|
|
|
|
upload_to_release = true
|
|
|
|
repository_url = "https://git.grassecon.net/grassrootseconomics/cic-utils"
|
|
|
|
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
|