We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 543db3d commit 8eda066Copy full SHA for 8eda066
project_name/__init__.py
@@ -1,5 +1,6 @@
1
from project_name.my_module import main
2
3
+
4
__all__ = [
5
'main',
6
]
pyproject.toml
@@ -1,5 +1,4 @@
[tool.black]
-preview = true
line-length = 120
skip-string-normalization = true
setup.py
@@ -19,14 +19,14 @@
19
20
21
DEV_REQUIREMENTS = [
22
- 'bandit == 1.7.*',
23
- 'black == 24.*',
24
- 'build == 1.1.*',
+ 'bandit == 1.8.*',
+ 'black == 25.*',
+ 'build == 1.2.*',
25
'flake8 == 7.*',
26
- 'isort == 5.*',
27
- 'mypy == 1.11.*',
+ 'isort == 6.*',
+ 'mypy == 1.15.*',
28
'pytest == 8.*',
29
- 'pytest-cov == 5.*',
+ 'pytest-cov == 6.*',
30
31
32
setuptools.setup(
0 commit comments