forked from unit/ciclostile
16 lines
462 B
Python
16 lines
462 B
Python
|
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'])
|