1- [tool . poetry ]
1+ [project ]
22name = " wiremock"
33version = " 2.7.0"
44description = " Wiremock Admin API Client"
5- authors = [
" Cody Lee <[email protected] >" ,
" Mike Waites <[email protected] >" ]
5+ authors = [
6+ {
name =
" Cody Lee" ,
email =
" [email protected] " },
7+ {
name =
" Mike Waites" ,
email =
" [email protected] " }
8+ ]
69license = " OSI Approved :: Apache Software License"
7- packages = [{include = " wiremock" }]
810readme = " README.md"
9- classifiers = [
11+ classifiers = [
1012 " Development Status :: 5 - Production/Stable" ,
1113 " Environment :: Web Environment" ,
1214 " Environment :: Other Environment" ,
@@ -15,11 +17,11 @@ classifiers=[
1517 " License :: OSI Approved :: Apache Software License" ,
1618 " Operating System :: OS Independent" ,
1719 " Natural Language :: English" ,
18- " Programming Language :: Python :: 3.7" ,
19- " Programming Language :: Python :: 3.8" ,
2020 " Programming Language :: Python :: 3.9" ,
2121 " Programming Language :: Python :: 3.10" ,
2222 " Programming Language :: Python :: 3.11" ,
23+ " Programming Language :: Python :: 3.12" ,
24+ " Programming Language :: Python :: 3.13" ,
2325 " Programming Language :: Python :: Implementation" ,
2426 " Topic :: Internet :: WWW/HTTP" ,
2527 " Topic :: Software Development :: Testing" ,
@@ -28,13 +30,19 @@ classifiers=[
2830 " Topic :: Software Development :: Quality Assurance" ,
2931 " Topic :: Software Development :: Libraries :: Python Modules" ,
3032]
33+ requires-python = " >=3.9, <3.14"
34+ dependencies = [
35+ " requests>=2.32.4" ,
36+ ]
3137
32- [tool .poetry .dependencies ]
33- python = " ^3.9 | ^3.10 | ^3.11 | ^3.12 | ^3.13"
34- requests = " ^2.20.0"
35- importlib-resources = " ^5.12.0"
36- docker = {version = " ^7.1.0" , optional = true }
37- testcontainers = {version = " ^3.7.1" , optional = true }
38+ [project .optional-dependencies ]
39+ testing = [
40+ " docker>=7.1.0" ,
41+ " testcontainers>=3.7.1,<4.0.0" ,
42+ ]
43+
44+ [tool .poetry ]
45+ packages = [{include = " wiremock" }]
3846
3947[tool .poetry .group .dev .dependencies ]
4048black = " ^23.3.0"
@@ -51,9 +59,6 @@ pytest = "^7.3.1"
5159mkdocs = " ^1.3.0"
5260markdown_include = " ^0.8.1"
5361
54- [tool .poetry .extras ]
55- testing = [" docker" , " testcontainers" ]
56-
5762[tool .pytest .ini_options ]
5863markers = [
5964 " unit: marks tests as unit tests" ,
0 commit comments