File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed
mkdocs_git_revision_date_localized_plugin Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_packages
2
2
3
+ with open ("README.md" , "r" ) as fh :
4
+ long_description = fh .read ()
5
+
3
6
setup (
4
7
name = 'mkdocs-git-revision-date-localized-plugin' ,
5
- version = '0.2' ,
8
+ version = '0.2.1 ' ,
6
9
description = 'Mkdocs plugin that enables displaying the localized date of the last git modification of a markdown file.' ,
10
+ long_description = long_description ,
11
+ long_description_content_type = "text/markdown" ,
7
12
keywords = 'mkdocs git date timeago babel plugin' ,
8
- url = 'https://github.com/timvink/mkdocs-git-revision-date-localized-plugin/ ' ,
13
+ url = 'https://github.com/timvink/mkdocs-git-revision-date-localized-plugin' ,
9
14
author = 'Tim Vink' ,
10
15
11
16
license = 'MIT' ,
12
17
python_requires = '>=3.4' ,
18
+ classifiers = [
19
+ "Programming Language :: Python :: 3" ,
20
+ "License :: OSI Approved :: MIT License" ,
21
+ "Operating System :: OS Independent" ,
22
+ ],
13
23
install_requires = [
14
24
'mkdocs>=0.17' ,
15
25
'GitPython' ,
You can’t perform that action at this time.
0 commit comments