-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 923 Bytes
/
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
from setuptools import setup
with open("README.md", "r") as fh:
readme = fh.read()
setup (
name='mkdocs-import-statement-plugin',
author='Rj40x40',
author_email='[email protected]',
# maintainer='Rj40x40',
# maintainer_email='[email protected]',
description="MkDocs plugin to insert images and tables from files into markdown.",
long_description=readme,
long_description_content_type='text/markdown',
license='MIT',
url="https://github.com/Rj40x40/mkdocs-import-statement-plugin/",
version='23.1.4',
# download_url=DOWNLOAD_URL,
python_requires='>=3.6',
install_requires=["mkdocs>=1.4"],
# extras_require=EXTRAS_REQUIRE,
packages=['mkdocs_import_statement_plugin'],
# classifiers=CLASSIFIERS
entry_points={
'mkdocs.plugins': [
'import-statement = mkdocs_import_statement_plugin.plugin:ImportPlugin',
]
},
)