Skip to content

Commit

Permalink
[svn] Trivial fix for bug #291, make project templates obey simple va…
Browse files Browse the repository at this point in the history
…riables at the paster create command line

--HG--
branch : trunk
  • Loading branch information
dds committed Sep 1, 2007
1 parent 8b25157 commit 71db7f5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions pylons/templates/default_project/setup.py_tmpl
Expand Up @@ -8,10 +8,10 @@ except ImportError:
setup(
name=${repr(project)|empty},
version=${repr(version)|empty},
#description="",
#author="",
#author_email="",
#url="",
${"description='" + description + "'"|"# description=''"},
${"author='" + author + "'"|"# author=''"},
${"author_email='" + author_email + "'"|"# author_email=''"},
# url='',
install_requires=["Pylons>=0.9.5"],
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
Expand Down
8 changes: 4 additions & 4 deletions pylons/templates/minimal_project/setup.py_tmpl
Expand Up @@ -8,10 +8,10 @@ except ImportError:
setup(
name=${repr(project)|empty},
version=${repr(version)|empty},
#description="",
#author="",
#author_email="",
#url="",
${"description='" + description + "'"|"# description=''"},
${"author='" + author + "'"|"# author=''"},
${"author_email='" + author_email + "'"|"# author_email=''"},
# url='',
install_requires=["Pylons>=0.9.5"],
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
Expand Down

0 comments on commit 71db7f5

Please sign in to comment.