Skip to content

Commit 03016f2

Browse files
committed
fix pypi installation
1 parent 682258a commit 03016f2

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

mkdocs_git_revision_date_localized_plugin/__init__.py

Whitespace-only changes.

setup.py

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,25 @@
11
from setuptools import setup, find_packages
22

3+
with open("README.md", "r") as fh:
4+
long_description = fh.read()
5+
36
setup(
47
name='mkdocs-git-revision-date-localized-plugin',
5-
version='0.2',
8+
version='0.2.1',
69
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",
712
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',
914
author='Tim Vink',
1015
author_email='[email protected]',
1116
license='MIT',
1217
python_requires='>=3.4',
18+
classifiers=[
19+
"Programming Language :: Python :: 3",
20+
"License :: OSI Approved :: MIT License",
21+
"Operating System :: OS Independent",
22+
],
1323
install_requires=[
1424
'mkdocs>=0.17',
1525
'GitPython',

0 commit comments

Comments
 (0)