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',
|
2018-02-22 13:44:07 +01:00
|
|
|
|
2017-11-18 16:11:40 +01:00
|
|
|
description='Static site generator',
|
|
|
|
long_description=open(path.join(here, 'README.md')).read(),
|
2018-02-22 13:44:07 +01:00
|
|
|
url='https://git.unit.macaomilano.org/unit/ciclostile',
|
|
|
|
|
2017-11-18 16:11:40 +01:00
|
|
|
author='Unit',
|
|
|
|
author_email='unit at paranoici dot org',
|
2018-02-22 13:44:07 +01:00
|
|
|
|
|
|
|
# package_dir={'': 'src'},
|
|
|
|
# packages=['ciclostile'],
|
|
|
|
scripts=['src/ciclostile_render'],
|
|
|
|
|
|
|
|
install_requires=['markdown', 'jinja2']
|
|
|
|
)
|