-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (38 loc) · 1.37 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
from setuptools import find_packages, setup
file = open("README.md", "r")
LONG_DESCRIPTION = file.read()
file.close()
file = open("requirements.txt", "r")
DEPENDENCIES = file.readlines()
file.close()
del file
setup(
name="mkdocs-git-revision-date-localized-plugin",
version="0.11.1",
description="Mkdocs plugin that enables displaying the localized date of the last git modification of a markdown file.",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
keywords="mkdocs git date timeago babel plugin",
url="https://github.com/timvink/mkdocs-git-revision-date-localized-plugin",
author="Tim Vink",
author_email="[email protected]",
include_package_data=True,
license="MIT",
python_requires=">=3.6",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=DEPENDENCIES,
packages=find_packages(),
entry_points={
"mkdocs.plugins": [
"git-revision-date-localized = mkdocs_git_revision_date_localized_plugin.plugin:GitRevisionDateLocalizedPlugin"
]
},
)