@@ -12,7 +12,7 @@ description = "Add a 1 sentence description here."
1212keywords = [" python" , " " , " " , " " ]
1313readme = " README.md"
1414license = " MIT"
15- requires-python = " >=3.10 "
15+ requires-python = " >=3.11 "
1616classifiers = [
1717 " Development Status :: 1 - Planning" ,
1818 " Intended Audience :: Science/Research" ,
@@ -21,15 +21,26 @@ classifiers = [
2121 " Programming Language :: Python" ,
2222 " Programming Language :: Python :: 3" ,
2323 " Programming Language :: Python :: 3 :: Only" ,
24- " Programming Language :: Python :: 3.10" ,
2524 " Programming Language :: Python :: 3.11" ,
2625 " Programming Language :: Python :: 3.12" ,
2726 " Programming Language :: Python :: 3.13" ,
2827 " Topic :: Scientific/Engineering" ,
2928 " Typing :: Typed" ,
3029]
3130dynamic = [" version" ]
31+ # list your package's dependencies below
32+ # follow SPEC0 for specifying minimum dependency versions for main packages: https://scientific-python.org/specs/spec-0000/
33+ # uncomment below packages if you need them
3234dependencies = [
35+ # "ipython>=8.13.0",
36+ # "matplotlib>=3.7.0",
37+ # "networkx>=3.1",
38+ # "pandas>=2.0.0",
39+ # "scikit-image>=0.21.0",
40+ # "scikit-learn>=1.3.0",
41+ # "scipy>=1.11.0",
42+ # "xarray>=2023.4.0",
43+ # "zarr>=2.15.0",
3344]
3445
3546[dependency-groups ]
@@ -97,7 +108,7 @@ report.exclude_also = [
97108
98109[tool .mypy ]
99110files = [" src" , " tests" ]
100- python_version = " 3.10 "
111+ python_version = " 3.11 "
101112warn_unused_configs = true
102113strict = true
103114enable_error_code = [" ignore-without-code" , " redundant-expr" , " truthy-bool" ]
@@ -154,8 +165,8 @@ ignore = [
154165"*.ipynb" = [" T201" ]
155166
156167[tool .pylint ]
157- py-version = " 3.10 "
158- ignore-paths = [" .*/ _version.py" ]
168+ py-version = " 3.11 "
169+ ignore-paths = [" .*\\ _version.py" ]
159170reports.output-format = " colorized"
160171similarities.ignore-imports = " yes"
161172similarities.min-similarity-lines = 5
0 commit comments