You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
935 B
38 lines
935 B
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_today.py', 'rb') as f:
|
|
description = str(ast.literal_eval(_description_re.search(
|
|
f.read().decode('utf-8')).group(1)))
|
|
|
|
setup(
|
|
author='joak',
|
|
author_email='joak',
|
|
description=description,
|
|
keywords='Lektor plugin',
|
|
license='MIT',
|
|
long_description=readme,
|
|
long_description_content_type='text/markdown',
|
|
name='lektor-today',
|
|
packages=find_packages(),
|
|
py_modules=['lektor_today'],
|
|
# url='[link to your repository]',
|
|
version='0.1',
|
|
classifiers=[
|
|
'Framework :: Lektor',
|
|
'Environment :: Plugins',
|
|
],
|
|
entry_points={
|
|
'lektor.plugins': [
|
|
'today = lektor_today:TodayPlugin',
|
|
]
|
|
}
|
|
)
|
|
|