-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
40 lines (37 loc) · 1.15 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
from setuptools import setup, find_packages
description = 'A mkdocs plugin that makes linking to other documents easy.'
long_description = description
with open("README.md", 'r') as f:
long_description = f.read()
setup(
name='mkdocs-ezlinks-plugin',
version='0.1.14',
description=description,
long_description=long_description,
long_description_content_type='text/markdown',
keywords='mkdocs',
url='https://github.com/orbikm/mkdocs-ezlinks-plugin',
download_url='https://github.com/orbikm/mkdocs-ezlinks-plugin/archive/v_0.1.14.tar.gz',
author='Mick Orbik',
author_email='mick.orbik@gmail.com',
license='MIT',
python_requires='>=3.6',
install_requires=[
'mkdocs>=1.1.0',
'dataclasses>=0.7; python_version < "3.7.0"',
'pygtrie==2.*'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only'
],
packages=find_packages(exclude=['test.*']),
entry_points={
'mkdocs.plugins': [
'ezlinks = mkdocs_ezlinks_plugin.plugin:EzLinksPlugin'
]
}
)