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( setup(
name='Ciclostile', name='Ciclostile',
version='0.0.0.dev0', version='0.0.0.dev0',
description='Static site generator', description='Static site generator',
long_description=open(path.join(here, 'README.md')).read(), long_description=open(path.join(here, 'README.md')).read(),
url='https://git.unit.macaomilano.org/unit/ciclostile',
author='Unit', author='Unit',
author_email='unit at paranoici dot org', author_email='unit at paranoici dot org',
url='https://git.unit.macaomilano.org/unit/ciclostile',
scripts=['bin/ciclostile'], # package_dir={'': 'src'},
install_requires=['markdown', 'jinja2']) # packages=['ciclostile'],
scripts=['src/ciclostile_render'],
install_requires=['markdown', 'jinja2']
)