all repos — py-vite @ df4d0d1f6ecd13d9d8fc247c9f78f3bc6666bfd3

the original vite, written in python

feat(setup.py): add setup.py
icyphox icyph0x@protonmail.com
Wed, 21 Mar 2018 13:22:50 +0530
commit

df4d0d1f6ecd13d9d8fc247c9f78f3bc6666bfd3

parent

8bfd5d8dbe239d5bfcb8d10ee77bd732d92916cb

1 files changed, 19 insertions(+), 0 deletions(-)

jump to
A setup.py

@@ -0,0 +1,19 @@

+import os +from setuptools import setup + +def read(fname): + return open(os.path.join(os.path.dirname(__file__), fname)).read() + +setup( + name = 'Vite', + version = '1.0.0', + author = 'Anirudh Oppiliappan', + author_email = 'icyph0x@protonmail.com', + description = ('A simple and minimal static site generator.'), + license = 'MIT', + url = 'https://github.com/icyphox/vite', + packages = ['vite'], + install_requires = [ + 'markdown2', + ], + zip_safe=False)