init
This commit is contained in:
parent
aac78ff993
commit
daced3babb
24 changed files with 1485 additions and 47 deletions
96
{{ package_name }}/pyproject.toml.jinja
Normal file
96
{{ package_name }}/pyproject.toml.jinja
Normal file
|
|
@ -0,0 +1,96 @@
|
|||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[project]
|
||||
name = "{{ package_name }}"
|
||||
description = 'A rich terminal report for coveragepy.'
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.7"
|
||||
license = "MIT"
|
||||
keywords = []
|
||||
authors = [
|
||||
{ name = "Waylon S. Walker", email = "waylon@waylonwalker.com" },
|
||||
]
|
||||
classifiers = [
|
||||
"Development Status :: 4 - Beta",
|
||||
"Programming Language :: Python",
|
||||
"Programming Language :: Python :: 3.7",
|
||||
"Programming Language :: Python :: 3.8",
|
||||
"Programming Language :: Python :: 3.9",
|
||||
"Programming Language :: Python :: 3.10",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: Implementation :: CPython",
|
||||
"Programming Language :: Python :: Implementation :: PyPy",
|
||||
]
|
||||
dependencies = [
|
||||
"rich",
|
||||
"textual",
|
||||
"typer",
|
||||
"anyconfig"
|
||||
]
|
||||
dynamic = ["version"]
|
||||
|
||||
[project.urls]
|
||||
Documentation = "https://github.com/waylonwalker/{{ package_name }}#readme"
|
||||
Issues = "https://github.com/waylonwalker/{{ package_name }}/issues"
|
||||
Source = "https://github.com/waylonwalker/{{ package_name }}"
|
||||
Changelog = "https://github.com/waylonwalker/{{ package_name }}"
|
||||
|
||||
[project.scripts]
|
||||
{{ package_name }} = "{{ python_package }}.cli.app:app"
|
||||
|
||||
[tool.hatch.version]
|
||||
path = "{{ python_package }}/__about__.py"
|
||||
|
||||
[tool.hatch.envs.default]
|
||||
dependencies = [
|
||||
"ipython",
|
||||
"mypy",
|
||||
"pyflyby",
|
||||
"pytest",
|
||||
"pytest-cov",
|
||||
"pytest-mock",
|
||||
"pytest-rich",
|
||||
"ruff",
|
||||
"black",
|
||||
]
|
||||
[tool.hatch.envs.default.scripts]
|
||||
test = "coverage run -m pytest"
|
||||
cov = "coverage-rich"
|
||||
lint = "ruff {{ python_package }}"
|
||||
format = "black {{ python_package }}"
|
||||
format-check = "black --check {{ python_package }}"
|
||||
build-docs = "markata build"
|
||||
lint-test = [
|
||||
"lint",
|
||||
"format-check",
|
||||
"test",
|
||||
"cov",
|
||||
]
|
||||
test-lint = "lint-test"
|
||||
|
||||
[[tool.hatch.envs.test.matrix]]
|
||||
python = ["37", "38", "39", "310", "311"]
|
||||
|
||||
[tool.coverage.run]
|
||||
branch = true
|
||||
parallel = true
|
||||
omit = [
|
||||
"{{ python_package }}/__about__.py",
|
||||
]
|
||||
|
||||
[tool.coverage.report]
|
||||
exclude_lines = [
|
||||
"no cov",
|
||||
"if __name__ == .__main__.:",
|
||||
"if TYPE_CHECKING:",
|
||||
]
|
||||
|
||||
[tool.pytest.ini_options]
|
||||
addopts = "-ra -q --rich"
|
||||
asyncio_mode = "auto"
|
||||
testpaths = ["tests"]
|
||||
|
||||
[tool.coverage_rich]
|
||||
fail-under=80
|
||||
Loading…
Add table
Add a link
Reference in a new issue