This repository has been archived by the owner on Aug 1, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
44 lines (42 loc) · 1.39 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
43
44
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="mkdocs-versioning",
version="0.4.0",
author="Zayd Patel",
author_email="[email protected]",
description="A tool that allows for versioning sites built with mkdocs",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/zayd62/mkdocs-versioning",
packages=setuptools.find_packages(),
classifiers=[
"License :: OSI Approved :: MIT License",
"Topic :: Documentation",
'Topic :: Text Processing',
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
entry_points={
"console_scripts": [
'mkdocs-versioning = mkversion.__main__:main'
],
'mkdocs.plugins': [
'mkdocs-versioning = mkversion.entry:Entry',
]
},
python_requires='>=3.6',
project_urls={
'Documentation': 'https://zayd62.github.io/mkdocs-versioning/'
},
install_requires=[
'PyYAML >= 5.3',
'mkdocs >= 1.1'
]
)