all repos — py-vite @ 0802e3c99fbb908d0bfe67bbc92be396abfc92fc

the original vite, written in python

feat(setup.py): add installation dependencies
begin switch to `cli.py`
Anirudh icyph0x@pm.me
Thu, 19 Apr 2018 23:29:36 +0530
commit

0802e3c99fbb908d0bfe67bbc92be396abfc92fc

parent

8b767d28ce445cc54066ba9af0ba695636ede2b3

1 files changed, 4 insertions(+), 1 deletions(-)

jump to
M setup.pysetup.py

@@ -5,9 +5,12 @@ name='vite',

version='1.0.0', description='A simple and minimal static site generator.', packages=['vite'], + install_requires=[ + 'markdown2', 'Jinja2', 'huepy', + ], entry_points={ 'console_scripts': [ - 'vite = vite.make:main', + 'vite = vite.cli:main', ] }, )