all repos — py-vite @ 06e808325ba5a24408214e5bee3f2a6f7e08627b

the original vite, written in python

chore: setup packaging (again)
Anirudh icyph0x@pm.me
Wed, 18 Apr 2018 17:42:23 +0530
commit

06e808325ba5a24408214e5bee3f2a6f7e08627b

parent

b41def3aca3b7a981faaea67b5aae1d1487462bc

5 files changed, 13 insertions(+), 0 deletions(-)

jump to
A setup.py

@@ -0,0 +1,13 @@

+from setuptools import setup + +setup( + name='vite', + version='1.0.0', + description='A simple and minimal static site generator.', + packages='vite' + entry_points={ + 'console_scripts': [ + 'vite = vite.cli:main', + ] + }, +)