Move script

web
uid 2018-02-22 13:44:07 +01:00
parent bf9057ed04
commit b1105c091e
2 changed files with 10 additions and 3 deletions

View File

@ -6,10 +6,17 @@ 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',
url='https://git.unit.macaomilano.org/unit/ciclostile',
scripts=['bin/ciclostile'],
install_requires=['markdown', 'jinja2'])
# package_dir={'': 'src'},
# packages=['ciclostile'],
scripts=['src/ciclostile_render'],
install_requires=['markdown', 'jinja2']
)