diff options
| author | Chris McDonough <chrism@plope.com> | 2011-10-05 05:06:49 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-10-05 05:06:49 -0400 |
| commit | a30a39ae06b26f57c0c393bbfd3e0cc0b540df14 (patch) | |
| tree | 99c42559af36173a5fcf2f3609cdca1cec79a3f5 /setup.py | |
| parent | 24b5c1f0276fd38754d609915a7236ba95c4e69d (diff) | |
| download | pyramid-a30a39ae06b26f57c0c393bbfd3e0cc0b540df14.tar.gz pyramid-a30a39ae06b26f57c0c393bbfd3e0cc0b540df14.tar.bz2 pyramid-a30a39ae06b26f57c0c393bbfd3e0cc0b540df14.zip | |
add a pcreate command
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -84,11 +84,11 @@ setup(name='pyramid', tests_require = tests_require, test_suite="pyramid.tests", entry_points = """\ - [glue.create_template] - pyramid_starter=pyramid.scaffolds:StarterProjectTemplate - pyramid_zodb=pyramid.scaffolds:ZODBProjectTemplate - pyramid_routesalchemy=pyramid.scaffolds:RoutesAlchemyProjectTemplate - pyramid_alchemy=pyramid.scaffolds:AlchemyProjectTemplate + [pyramid.scaffold] + starter=pyramid.scaffolds:StarterProjectTemplate + zodb=pyramid.scaffolds:ZODBProjectTemplate + routesalchemy=pyramid.scaffolds:RoutesAlchemyProjectTemplate + alchemy=pyramid.scaffolds:AlchemyProjectTemplate [glue.command] pshell=pyramid.paster:PShellCommand proutes=pyramid.paster:PRoutesCommand @@ -96,6 +96,7 @@ setup(name='pyramid', ptweens=pyramid.paster:PTweensCommand [console_scripts] bfg2pyramid = pyramid.fixers.fix_bfg_imports:main + pcreate = pyramid.scripts.pcreate:main """ ) |
