Skip to content

Commit 942eb3d

Browse files
chore(dev): update dev dependencies and tools config
1 parent ed9540d commit 942eb3d

File tree

2 files changed

+170
-3
lines changed

2 files changed

+170
-3
lines changed

poetry.lock

Lines changed: 157 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ description = "A bingo board generator using NiceGUI"
55
authors = ["Offending Commit <offendingcommit@gmail.com>"]
66
license = "MIT"
77
readme = "README.md"
8+
repository = "https://github.com/offendingcommit/bingo"
89
package-mode = false
910
exclude = [".git", ".git/"]
1011

@@ -15,6 +16,9 @@ nicegui = "^2.11.0"
1516
[tool.poetry.group.dev.dependencies]
1617
pytest = "^7.4.0"
1718
pytest-cov = "^4.1.0"
19+
flake8 = "^7.0.0"
20+
black = "^24.2.0"
21+
isort = "^5.13.2"
1822

1923
[build-system]
2024
requires = ["poetry-core>=1.8"]
@@ -26,3 +30,12 @@ python_files = "test_*.py"
2630
python_classes = "Test*"
2731
python_functions = "test_*"
2832
addopts = "--cov=src"
33+
34+
[tool.black]
35+
line-length = 88
36+
target-version = ["py312"]
37+
include = '\.pyi?$'
38+
39+
[tool.isort]
40+
profile = "black"
41+
line_length = 88

0 commit comments

Comments
 (0)