ciclostile/setup.py

23 lines
585 B
Python
Raw Normal View History

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
2018-02-22 16:43:12 +01:00
package_dir={'': 'src'},
packages=['ciclostile'],
scripts=['src/ciclostile_render', 'src/ciclostile_web'],
2018-02-22 13:44:07 +01:00
2018-02-24 19:53:44 +01:00
install_requires=['markdown', 'jinja2', 'flask', 'flask-httpauth']
2018-02-22 13:44:07 +01:00
)