all repos — py-vite @ 8a089a5dcc65d62f2b0c196281d72708e92ea948

the original vite, written in python

setup.py (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
from setuptools import setup

with open('README.md') as f:
    long_description = f.read()

setup(
        name='vite',
        version='1.1',
        description='A simple and minimal static site generator.',
        packages=['vite'],
        install_requires=[
            'markdown2', 'Jinja2', 'huepy',
            ],
        entry_points={
            'console_scripts': [
                'vite = vite.cli:main',
                ]
            },
)