Skip to content

Commit

Permalink
setup.cfg B gone
Browse files Browse the repository at this point in the history
  • Loading branch information
Tinche committed Dec 12, 2021
1 parent 134820d commit 3ad74d4
Show file tree
Hide file tree
Showing 4 changed files with 76 additions and 78 deletions.
110 changes: 54 additions & 56 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 18 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ typing_extensions = { version = "*", python = "~3.7" }
pymongo = "^3.12.1"
flake8 = "^3.9.0"
tox = "^3.23.0"
coverage = "^5.5"
Sphinx = "^4.1.2"
pytest = "^6.2.3"
pytest-benchmark = "^3.2.3"
Expand All @@ -45,11 +44,29 @@ msgpack = "^1.0.2"
PyYAML = "^5.4.1"
tomlkit = "^0.7.0"
furo = "^2021.7.31-beta.41"
coverage = {extras = ["toml"], version = "^6.2"}

[tool.poetry.urls]
"Changelog" = "https://cattrs.readthedocs.io/en/latest/history.html"
"Bug Tracker" = "https://github.com/python-attrs/cattrs/issues"

[tool.pytest.ini_options]
addopts = "-l --benchmark-sort=fullname --benchmark-warmup=true --benchmark-warmup-iterations=5 --benchmark-group-by=fullname"

[tool.coverage.run]
omit = [
"cattr/_compat.py",
"cattr/vendor/typing.py",
"cattr/vendor/python3/typing.py",
]

[tool.coverage.paths]
source = [
"src/cattr",
".tox/*/lib/python*/site-packages/cattr",
".tox/pypy*/site-packages/cattr",
]

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
21 changes: 0 additions & 21 deletions setup.cfg

This file was deleted.

4 changes: 4 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ python =
3.10: py310
pypy3: pypy3

[flake8]
exclude = docs, cattr/vendor
ignore = E203, E501, W503

[tox]
envlist = pypy3, py37, py38, py39, py310, lint
isolated_build = true
Expand Down

0 comments on commit 3ad74d4

Please sign in to comment.