Skip to content

Commit

Permalink
Remove unused sections on pyproject
Browse files Browse the repository at this point in the history
  • Loading branch information
zsinx6 committed Aug 7, 2024
1 parent 340495f commit b02441f
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 38 deletions.
46 changes: 23 additions & 23 deletions poetry.lock

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

16 changes: 1 addition & 15 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,12 @@ typer = {extras = ["all"], version = "^0.9.0"}
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
coverage = {extras = ["toml"], version = "^6.1.2"}
ruff = "^0.5.1"
ruff = "^0.5.6"

[tool.pytest.ini_options]
minversion = "7.0"
testpaths = ["tests"]

[tool.black]
target-version = ['py311']
line-length = 100

[tool.ruff]
target-version = "py311"
line-length = 100
Expand All @@ -40,20 +36,10 @@ lint.select = [
"C901", # mccabe
]
lint.ignore = [
"E501", # line too long, handled by black
"C401", # generator syntax for sets vs always force set comprehension
"PLC0414", # allow explicit re-exports using 'as' without forcing __all__
]

[tool.isort]
line_length = 100
src_paths = ["dojo_toolkit", "tests"]
multi_line_output = 3
include_trailing_comma = true

[tool.poetry.scripts]
dojo = "dojo_toolkit.main:run"

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

0 comments on commit b02441f

Please sign in to comment.