setup.py (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 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', 'Jinja2',
],
zip_safe=False)
|