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" ,
@@ -20,37 +18,41 @@ classifiers = [
2018 " Topic :: Software Development :: Libraries" ,
2119 " Topic :: Utilities" ,
2220 " Programming Language :: Python :: 3" ,
23- " Programming Language :: Python :: 3.8" ,
2421 " Programming Language :: Python :: 3.9" ,
2522 " Programming Language :: Python :: 3.10" ,
2623 " Programming Language :: Python :: 3.11" ,
2724 " Programming Language :: Python :: 3.12" ,
2825 " Programming Language :: Python :: 3.13" ,
2926]
27+ requires-python = " >=3.9"
28+ dependencies = [
29+ " inflection" ,
30+ " factory_boy>=2.10.0" ,
31+ " pytest>=7.0" ,
32+ " typing_extensions" ,
33+ " packaging" ,
34+ ]
3035
31- [tool .poetry .plugins ."pytest11" ]
32- "pytest-factoryboy" = " pytest_factoryboy.plugin"
36+ [project .urls ]
37+ homepage = " https://pytest-factoryboy.readthedocs.io/"
38+ documentation = " https://pytest-factoryboy.readthedocs.io/"
39+ repository = " https://github.com/pytest-dev/pytest-factoryboy"
3340
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 = " *"
41+ [project .entry-points ."pytest11" ]
42+ "pytest-factoryboy" = " pytest_factoryboy.plugin"
4143
4244[tool .poetry .group .dev .dependencies ]
4345mypy = " >=1.4.1"
4446tox = " >=4.0.8"
4547coverage = {extras = [" toml" ], version = " >=6.5.0" }
4648
4749[build-system ]
48- requires = [" poetry-core>=1 .0.0" ]
50+ requires = [" poetry-core (>=2 .0.0, <3.0.0) " ]
4951build-backend = " poetry.core.masonry.api"
5052
5153[tool .black ]
5254line-length = 120
53- target-version = [" py38 " , " py39" , " py310" , " py311" , " py312" , " py313" ]
55+ target-version = [" py39" , " py310" , " py311" , " py312" , " py313" ]
5456
5557[tool .isort ]
5658profile = " black"
0 commit comments