1- [tool .poetry ]
1+
2+ [build-system ]
3+ requires = [" poetry-core" ]
4+ build-backend = " poetry.core.masonry.api"
5+
6+ [project ]
27name = " toolbox-python"
38version = " 1.0.4"
49description = " Helper files/functions/classes for generic Python processes"
510readme = " README.md"
611license = " MIT"
712authors = [
8- " Admin < toolbox-python@data-science-extensions.com> " ,
13+ { name = " Chris Mahoney " , email = " toolbox-python@data-science-extensions.com" } ,
914]
1015maintainers = [
11- " Admin <toolbox-python@data-science-extensions.com>" ,
12- ]
13- packages = [
14- { include = " toolbox_python" , from = " src" },
16+ {name =" Chris Mahoney" , email =" toolbox-python@data-science-extensions.com" },
1517]
1618classifiers = [
1719 " Topic :: Software Development :: Build Tools" ,
@@ -29,27 +31,32 @@ classifiers = [
2931 " Topic :: Software Development :: Testing :: Unit" ,
3032 " Topic :: Utilities" ,
3133]
34+ requires-python = " >3.9,<4.0"
35+ dependencies = [
36+ " typeguard==4.*" ,
37+ " more-itertools==10.*" ,
38+ ]
3239
33- [tool . poetry .urls ]
40+ [project .urls ]
3441Homepage = " https://data-science-extensions.com/python-toolbox"
3542Documentation = " https://data-science-extensions.com/python-toolbox"
3643Repository = " https://github.com/data-science-extensions/toolbox-python"
3744Changelog = " https://github.com/data-science-extensions/toolbox-python/releases"
3845Issues = " https://github.com/data-science-extensions/toolbox-python/issues"
3946
40- [tool .poetry . dependencies ]
41- python = " >3.9,<4.0 "
42- typeguard = " 4.* "
43- more-itertools = " 10.* "
47+ [tool .poetry ]
48+ packages = [
49+ { include = " toolbox_python " , from = " src " },
50+ ]
4451
4552[tool .poetry .group .dev ]
4653optional = true
4754
4855[tool .poetry .group .dev .dependencies ]
49- black = " 24 .*"
56+ black = " 25 .*"
5057blacken-docs = " 1.*"
5158pre-commit = " 4.*"
52- isort = " 5 .*"
59+ isort = " 6 .*"
5360codespell = " 2.*"
5461pyupgrade = " 3.*"
5562pylint = " 3.*"
@@ -68,7 +75,7 @@ mkdocs-coverage = "1.*"
6875mkdocs-autorefs = " 1.*"
6976livereload = " 2.*"
7077mike = " 2.*"
71- black = " 24 .*"
78+ black = " 25 .*"
7279docstring-inheritance = " 2.*"
7380
7481[tool .poetry .group .test ]
@@ -179,10 +186,6 @@ disable = [
179186
180187[[tool .poetry_bumpversion .replacements ]]
181188files = [
182- " src/toolbox_python/version .py" ,
189+ " src/toolbox_python/__init__ .py" ,
183190 " src/tests/test_version.py" ,
184191]
185-
186- [build-system ]
187- requires = [" poetry-core" ]
188- build-backend = " poetry.core.masonry.api"
0 commit comments