Skip to content

Commit

Permalink
Moved most configuration over to pyproject.toml.
Browse files Browse the repository at this point in the history
  • Loading branch information
apollo13 authored and ipmb committed Jan 6, 2023
1 parent 4414566 commit 188d1fb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 20 deletions.
8 changes: 8 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,14 @@ zip-safe = false
[tool.distutils.bdist_wheel]
universal = true

[tool.isort]
profile = "black"
default_section = "THIRDPARTY"
known_first_party = "goodconf"

[tool.pytest.ini_options]
addopts = "--cov"

[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
20 changes: 0 additions & 20 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,28 +1,8 @@
[tool:pytest]
addopts = --cov

[zest.releaser]
tag-signing = yes
date-format = %%-d %%B %%Y
tag-format = v{version}

[check-manifest]
ignore =
tests
tests/*

[coverage:run]
source = goodconf

[coverage:report]
show_missing = true
skip_covered = true

[isort]
profile = black
default_section = THIRDPARTY
known_first_party = goodconf

[flake8]
extend-ignore = E203
max-line-length = 88

0 comments on commit 188d1fb

Please sign in to comment.