generic/pyproject.toml
dependabot[bot] efa2e8443b
Bump pre-commit from 2.16.0 to 2.17.0 (#156)
Bumps [pre-commit](https://github.com/pre-commit/pre-commit) from 2.16.0 to 2.17.0.
- [Release notes](https://github.com/pre-commit/pre-commit/releases)
- [Changelog](https://github.com/pre-commit/pre-commit/blob/master/CHANGELOG.md)
- [Commits](https://github.com/pre-commit/pre-commit/compare/v2.16.0...v2.17.0)

---
updated-dependencies:
- dependency-name: pre-commit
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-01-19 18:53:50 -05:00

100 lines
2.0 KiB
TOML

[tool.poetry]
name = "generic"
version = "1.0.1"
description = "Generic programming library for Python"
authors = [
"Andrey Popp <8mayday@gmail.com>",
"Arjan Molenaar <gaphor@gmail.com>"
]
maintainers = [
"Arjan Molenaar <gaphor@gmail.com>",
"Dan Yeaw <dan@yeaw.me>"
]
license = "BSD License"
readme = "README.md"
homepage = "https://generic.readthedocs.io/"
repository = "https://github.com/gaphor/generic"
documentation = "https://generic.readthedocs.io/"
keywords = ["generic", "multi dispatch", "dispatch", "event"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.dev-dependencies]
pytest = "^6.2"
pytest-cov = "^2.12"
pytest-runner = "^5.3"
black = { version = "^21.12b0", python = "^3.7" }
mypy = "0.931"
pre-commit = "^2.17"
bw_sphinxtheme = "^0.1.8"
tox = "^3.24"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.tox]
legacy_tox_ini = """
[tox]
isolated_build = true
envlist = clean, py38, py39, py310, report
[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
[testenv]
commands =
pytest --cov --cov-append --cov-report=term-missing {posargs}
deps =
pytest
pytest-cov
depends =
{py38,py39,py310}: clean
report: py38,py39,py310
[testenv:report]
deps = coverage[toml]
skip_install = true
commands =
coverage report
coverage html
[testenv:clean]
deps = coverage[toml]
skip_install = true
commands = coverage erase
"""
[tool.pytest.ini_options]
testpaths = [
"tests",
"docs",
]
addopts = "--doctest-modules --doctest-glob='*.rst'"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88
known_third_party = ["pytest"]
skip = ".venv,build,dist"
[tool.coverage.run]
source = ["generic"]