ciclostile/setup.py

16 lines
462 B
Python
Raw Normal View History

2017-11-18 16:11:40 +01:00
from distutils.core import setup
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name='Ciclostile',
version='0.0.0.dev0',
description='Static site generator',
long_description=open(path.join(here, 'README.md')).read(),
author='Unit',
author_email='unit at paranoici dot org',
url='https://git.unit.macaomilano.org/unit/ciclostile',
scripts=['bin/ciclostile'],
install_requires=['markdown', 'jinja2'])