Add emojify plugin

This commit is contained in:
Felipe M 2016-12-26 12:41:53 +01:00
parent a14ce75cca
commit bead0a825f
3 changed files with 53 additions and 0 deletions

16
packages/emojify/setup.py Normal file
View file

@ -0,0 +1,16 @@
from setuptools import setup
setup(
name='lektor-emojify',
version='0.1',
author=u'Felipe Martin',
author_email='me@fmartingr.com',
license='MIT',
py_modules=['lektor_emojify'],
install_requires=['emoji'],
entry_points={
'lektor.plugins': [
'emojify = lektor_emojify:EmojifyPlugin',
]
}
)