@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " swagger-plugin-for-sphinx"
7- version = " 3.2 .0"
7+ version = " 3.3 .0"
88description = " Sphinx plugin which renders a OpenAPI specification with Swagger"
99authors = [{
name =
" Kai Mueller" ,
email =
" [email protected] " }]
1010readme = " README.md"
@@ -23,6 +23,7 @@ classifiers = [
2323 " Programming Language :: Python :: 3.9" ,
2424 " Programming Language :: Python :: 3.10" ,
2525 " Programming Language :: Python :: 3.11" ,
26+ " Programming Language :: Python :: 3.12" ,
2627 " Topic :: Documentation" ,
2728 " Topic :: Documentation :: Sphinx" ,
2829 " Typing :: Typed"
@@ -43,19 +44,21 @@ text = "Apache-2.0"
4344
4445[project .optional-dependencies ]
4546dev = [
46- " pre-commit==3.3.2" ,
47- " pylint==2.17.4" ,
48- " pytest==7.3.1" ,
49- " pytest-mock==3.10.0" ,
50- " coverage==7.2.0" ,
51- " diff-cover==7.5.0" ,
52- " pytest-cov==4.1.0" ,
53- " black==23.3.0" ,
47+ " pre-commit==3.3.3" ,
48+ " pylint==2.17.5" ,
49+ " black==23.7.0" ,
5450 " isort==5.12.0" ,
55- " flake8==6.0 .0" ,
56- " mypy==1.3 .0" ,
51+ " flake8==6.1 .0" ,
52+ " mypy==1.5 .0" ,
5753 " types-docutils==0.20.0.1"
5854]
55+ test = [
56+ " pytest==7.4.0" ,
57+ " pytest-mock==3.11.1" ,
58+ " coverage==7.2.7" ,
59+ " diff-cover==7.7.0" ,
60+ " pytest-cov==4.1.0" ,
61+ ]
5962
6063[tool .setuptools .packages .find ]
6164include = [" swagger_plugin_for_sphinx" ]
@@ -74,6 +77,7 @@ warn_incomplete_stub = true
7477warn_no_return = true
7578warn_unreachable = true
7679strict = true
80+ python_version = " 3.8"
7781# output
7882pretty = true
7983show_column_numbers = true
@@ -88,6 +92,7 @@ min-public-methods = 0
8892
8993[tool .pylint .master ]
9094max-line-length = 100
95+ py-version = [3 , 8 ]
9196
9297[tool .pylint ."messages control" ]
9398enable = [" all" ]
0 commit comments