all repos — py-vite @ f2f9eb9e25dfaf46f23f5d5e9d622b58d5f68c6a

the original vite, written in python

setup.py (view raw)

 1import os
 2from setuptools import setup
 3
 4def read(fname):
 5    return open(os.path.join(os.path.dirname(__file__), fname)).read()
 6
 7setup(
 8        name = 'Vite',
 9        version = '1.0.0',
10        author = 'Anirudh Oppiliappan',
11        author_email = 'icyph0x@protonmail.com',
12        description = ('A simple and minimal static site generator.'),
13        license = 'MIT',
14        url = 'https://github.com/icyphox/vite',
15        packages = ['vite'],
16        install_requires = [
17            'markdown2', 'Jinja2',
18        ],
19        zip_safe=False)