add a README file, use it for the long description

This commit is contained in:
Benjamin Dauvergne 2014-04-30 14:30:57 +02:00
parent d0de9cd4d6
commit a32a322ca0
2 changed files with 5 additions and 2 deletions

2
README Normal file
View File

@ -0,0 +1,2 @@
app-name
========

View File

@ -1,4 +1,4 @@
#! /usr/bin/env python
! /usr/bin/env python
''' Setup script for {{ app-name }}
'''
@ -29,7 +29,7 @@ class compile_translations(Command):
continue
curdir = os.getcwd()
os.chdir(os.path.realpath(path))
compile_messages(stderr=sys.stderr)
compile_messages(sys.stderr)
os.chdir(curdir)
class build(_build):
@ -78,6 +78,7 @@ setup(name="django-{{ app-name }}",
version=get_version(),
license="AGPLv3 or later",
description="",
long_description=file('README').read(),
url="http://dev.entrouvert.org/projects/django-{{ app-name }}/",
author="Entr'ouvert",
author_email="info@entrouvert.org",