-
-
Notifications
You must be signed in to change notification settings - Fork 184
/
Copy pathsetup.py
36 lines (32 loc) · 1.01 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
# Standard library
from os import path
# Third-party
from setuptools import find_packages, setup
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
description = "This plugin adds styling to markdown tables"
setup(
author="Shubham Pandey",
author_email="shubhampcpandey13@gmail.com",
description=description,
keywords="Lektor plugin",
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
name="lektor-markdown-table",
packages=find_packages(),
py_modules=["lektor_markdown_table"],
url="https://github.com/sp35/lektor-markdown-table",
version="0.1",
classifiers=[
"Framework :: Lektor",
"Environment :: Plugins",
"Programming Language :: Python :: 3",
],
entry_points={
"lektor.plugins": [
"markdown-table = lektor_markdown_table:MarkdownTablePlugin",
]
},
)