38 lines
955 B
Python
38 lines
955 B
Python
import ast
|
|
import io
|
|
import re
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
with io.open('README.md', 'rt', encoding="utf8") as f:
|
|
readme = f.read()
|
|
|
|
_description_re = re.compile(r'description\s+=\s+(?P<description>.*)')
|
|
|
|
with open('lektor_shell.py', 'rb') as f:
|
|
description = str(ast.literal_eval(_description_re.search(
|
|
f.read().decode('utf-8')).group(1)))
|
|
|
|
setup(
|
|
author='palo',
|
|
author_email='contact@ingolf-wagner.de',
|
|
description=description,
|
|
keywords='Lektor plugin',
|
|
license='MIT',
|
|
long_description=readme,
|
|
long_description_content_type='text/markdown',
|
|
name='lektor-shell',
|
|
packages=find_packages(),
|
|
py_modules=['lektor_shell'],
|
|
# url='[link to your repository]',
|
|
version='0.2',
|
|
classifiers=[
|
|
'Framework :: Lektor',
|
|
'Environment :: Plugins',
|
|
],
|
|
entry_points={
|
|
'lektor.plugins': [
|
|
'shell = lektor_shell:ShellPlugin',
|
|
]
|
|
}
|
|
)
|