all repos — py-vite @ db7d12b250c4e1e5a887597485f3b2b46c5f4b8e

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
 20
 21
 22
 23
 24
 25
 26
from setuptools import setup
from vite import __version__

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

setup(
        author='Anirudh',
        author_email='x@icyphox.sh',
        long_description=long_description,
        long_description_content_type='text/markdown',
        name='vite',
        version=__version__,
        description='A simple and minimal static site generator.',
        url='https://github.com/icyphox/vite',
        license='MIT',
        packages=['vite'],
        install_requires=[
            'myrkdown @ git+https://github.com/icyphox/myrkdown', 'Jinja2', 'huepy', 'pygments', 'livereload',
            ],
        entry_points={
            'console_scripts': [
                'vite = vite.cli:main',
                ]
            },
)