Add emojify plugin
This commit is contained in:
parent
a14ce75cca
commit
bead0a825f
3 changed files with 53 additions and 0 deletions
16
packages/emojify/setup.py
Normal file
16
packages/emojify/setup.py
Normal 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',
|
||||
]
|
||||
}
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue