forked from unit/ciclostile
23 lines
558 B
Python
23 lines
558 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(),
|
|
url='https://git.unit.macaomilano.org/unit/ciclostile',
|
|
|
|
author='Unit',
|
|
author_email='unit at paranoici dot org',
|
|
|
|
package_dir={'': 'src'},
|
|
packages=['ciclostile'],
|
|
scripts=['src/ciclostile_render', 'src/ciclostile_web'],
|
|
|
|
install_requires=['markdown', 'jinja2']
|
|
)
|