1- [tool . poetry ]
1+ [project ]
22name = " pytest-factoryboy"
33version = " 2.7.0"
44description = " Factory Boy support for pytest."
5- authors = [" Oleg Pidsadnyi < oleg.pidsadnyi@gmail.com> " ]
6- maintainers = [" Alessio Bogon < 778703+youtux@users.noreply.github.com> " ]
5+ authors = [ { name = " Oleg Pidsadnyi" , email = " oleg.pidsadnyi@gmail.com" } ]
6+ maintainers = [ { name = " Alessio Bogon" , email = " 778703+youtux@users.noreply.github.com" } ]
77license = " MIT"
88readme = " README.rst"
9- homepage = " https://pytest-factoryboy.readthedocs.io/"
10- documentation = " https://pytest-factoryboy.readthedocs.io/"
11- repository = " https://github.com/pytest-dev/pytest-factoryboy"
9+
1210classifiers = [
1311 " Development Status :: 6 - Mature" ,
1412 " Intended Audience :: Developers" ,
@@ -27,25 +25,30 @@ classifiers = [
2725 " Programming Language :: Python :: 3.12" ,
2826 " Programming Language :: Python :: 3.13" ,
2927]
28+ requires-python = " >=3.8"
29+ dependencies = [
30+ " inflection" ,
31+ " factory_boy>=2.10.0" ,
32+ " pytest>=7.0" ,
33+ " typing_extensions" ,
34+ " packaging" ,
35+ ]
3036
31- [tool .poetry .plugins ."pytest11" ]
32- "pytest-factoryboy" = " pytest_factoryboy.plugin"
37+ [project .urls ]
38+ homepage = " https://pytest-factoryboy.readthedocs.io/"
39+ documentation = " https://pytest-factoryboy.readthedocs.io/"
40+ repository = " https://github.com/pytest-dev/pytest-factoryboy"
3341
34- [tool .poetry .dependencies ]
35- python = " >=3.8"
36- inflection = " *"
37- factory_boy = " >=2.10.0"
38- pytest = " >=7.0"
39- typing_extensions = " *"
40- packaging = " *"
42+ [project .entry-points ."pytest11" ]
43+ "pytest-factoryboy" = " pytest_factoryboy.plugin"
4144
4245[tool .poetry .group .dev .dependencies ]
4346mypy = " >=1.4.1"
4447tox = " >=4.0.8"
4548coverage = {extras = [" toml" ], version = " >=6.5.0" }
4649
4750[build-system ]
48- requires = [" poetry-core>=1 .0.0" ]
51+ requires = [" poetry-core (>=2 .0.0, <3.0.0) " ]
4952build-backend = " poetry.core.masonry.api"
5053
5154[tool .black ]
0 commit comments