Skip to content

Commit

Permalink
Move configurations files to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
renanivo committed Jan 12, 2025
1 parent 913755b commit 9320417
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 51 deletions.
29 changes: 1 addition & 28 deletions poetry.lock

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

14 changes: 13 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
black = {version = "24.10.0", extras = ["typed-ast"]}
mypy = "1.14.1"
bumpversion = "^0.6.0"
flake8 = "^7.1.1"
pytest-cov = "^6.0.0"
isort = "^5.13.2"
Expand All @@ -57,3 +56,16 @@ line-length = 79

[tool.mypy]
ignore_missing_imports = true

[tool.coverage.run]
omit = [
"*/*/tests/*",
]

[tool.isort]
profile = "black"
known_first_party = "pytest_testdox"
atomic = true
line_length = 79
multi_line_output = 3
use_parentheses = true
22 changes: 0 additions & 22 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,24 +1,2 @@
[bumpversion]
current_version = 3.1.0
commit = True
tag = True
tag_name = {new_version}

[bdist_wheel]
universal = 1

[bumpversion:file:setup.py]

[coverage:run]
omit = */*/tests/*

[isort]
profile = black
known_first_party = pytest_testdox
atomic = true
line_length = 79
multi_line_output = 3
use_parentheses = true

[flake8]
extend-ignore = E203

0 comments on commit 9320417

Please sign in to comment.