Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
akheron committed Aug 20, 2010
1 parent a6bc970 commit 0e578e1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Expand Up @@ -3,19 +3,19 @@
from distutils.core import setup

setup(
name='stango',
name='Stango',
version='0.1',
author='Petri Lehtinen',
author_email='petri@digip.org',
url='http://www.digip.org/stango/',
description='Static web site generator for Python programmers',
description='Pythonic static web site generator',
long_description='''Stango is a Pythonic static web site generator
that feels like a web framework. User defined view functions generate
the content to pages (e.g. using Jinja2 templates or any other means).
During development, the pages are served locally using a built-in web
server with all URLs working. When they site is ready, it is generated
server with all URLs working. When the site is ready, it is generated
to flat files and can be pushed to a production server.''',
license='MIT',
packages=['stango', 'stango.manage'],
packages=['stango'],
scripts=['bin/stango'],
)

0 comments on commit 0e578e1

Please sign in to comment.