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,18 +31,23 @@ 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
@@ -182,7 +189,3 @@ files = [
182189 " 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