@@ -34,6 +34,7 @@ classifiers = [
3434 " Intended Audience :: Developers" ,
3535 " License :: OSI Approved :: MIT License" ,
3636 " Operating System :: POSIX :: Linux" ,
37+ " Operating System :: MacOS" ,
3738 " Operating System :: Microsoft :: Windows" ,
3839 " Programming Language :: Python :: 3.14" ,
3940 " Programming Language :: Python :: 3.13" ,
@@ -76,7 +77,7 @@ packaging = [
7677 " pyroma>=4.2" ,
7778]
7879pre-commit = [
79- " pre-commit>=3.5" , # 3.5 still supports python3.8
80+ " pre-commit>=3.5" ,
8081 " pre-commit-hooks>=5.0" ,
8182 " prek>=0.2.30" ,
8283]
@@ -141,7 +142,7 @@ end_of_line = "lf"
141142
142143[tool .mypy ]
143144# cfr https://mypy.readthedocs.io/en/stable/config_file.html#using-a-pyproject-toml-file
144- cache_dir = " $MYPY_CONFIG_FILE_DIR/var/cache/mypy"
145+ cache_dir = " ${ MYPY_CONFIG_FILE_DIR} /var/cache/mypy"
145146check_untyped_defs = true
146147disallow_untyped_defs = true
147148exclude = " ^bin/"
@@ -185,7 +186,6 @@ pythonpath = ["tests"] # allows for importing helper-module
185186
186187
187188[tool .ruff ]
188- # https://beta.ruff.rs/docs/configuration/
189189# https://docs.astral.sh/ruff/configuration/#using-pyprojecttoml
190190cache-dir = " var/cache/ruff" # relative to project_root
191191line-length = 120
@@ -215,7 +215,7 @@ force-single-line = false
215215from-first = false
216216known-third-party = []
217217known-first-party = [" autoread_dotenv" ]
218- known-local-folder = [" _helpers" ]
218+ # known-local-folder = ["_helpers"]
219219
220220[tool .ruff .lint .per-file-ignores ]
221221"docs/**" = [
0 commit comments