Skip to content

Commit b02441f

Browse files
committed
Remove unused sections on pyproject
1 parent 340495f commit b02441f

File tree

2 files changed

+24
-38
lines changed

2 files changed

+24
-38
lines changed

poetry.lock

+23-23
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+1-15
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,12 @@ typer = {extras = ["all"], version = "^0.9.0"}
1818
pytest = "^7.4.0"
1919
pytest-cov = "^4.1.0"
2020
coverage = {extras = ["toml"], version = "^6.1.2"}
21-
ruff = "^0.5.1"
21+
ruff = "^0.5.6"
2222

2323
[tool.pytest.ini_options]
2424
minversion = "7.0"
2525
testpaths = ["tests"]
2626

27-
[tool.black]
28-
target-version = ['py311']
29-
line-length = 100
30-
3127
[tool.ruff]
3228
target-version = "py311"
3329
line-length = 100
@@ -40,20 +36,10 @@ lint.select = [
4036
"C901", # mccabe
4137
]
4238
lint.ignore = [
43-
"E501", # line too long, handled by black
4439
"C401", # generator syntax for sets vs always force set comprehension
4540
"PLC0414", # allow explicit re-exports using 'as' without forcing __all__
4641
]
4742

48-
[tool.isort]
49-
line_length = 100
50-
src_paths = ["dojo_toolkit", "tests"]
51-
multi_line_output = 3
52-
include_trailing_comma = true
53-
54-
[tool.poetry.scripts]
55-
dojo = "dojo_toolkit.main:run"
56-
5743
[build-system]
5844
requires = ["poetry-core>=1.0.0"]
5945
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)