File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 10
10
def read (fname ):
11
11
return open (os .path .join (os .path .dirname (__file__ ), fname )).read ()
12
12
13
+
13
14
test_requirements = [
14
15
'pytest' ,
15
16
'pytest <5; python_version < "3.0"' ,
@@ -23,7 +24,7 @@ def read(fname):
23
24
24
25
setup (
25
26
name = 'mkdocs-redirects' ,
26
- version = '1.0.6 ' ,
27
+ version = '1.1.0 ' ,
27
28
description = 'A MkDocs plugin for dynamic page redirects to prevent broken links.' ,
28
29
long_description = read ('README.md' ),
29
30
long_description_content_type = "text/markdown" ,
@@ -60,7 +61,7 @@ def read(fname):
60
61
packages = find_packages (),
61
62
entry_points = {
62
63
'mkdocs.plugins' : [
63
- 'redirects = mkdocs_redirects.plugin:RedirectPlugin'
64
+ 'redirects = mkdocs_redirects.plugin:RedirectPlugin' ,
64
65
]
65
- }
66
+ },
66
67
)
You can’t perform that action at this time.
0 commit comments