diff options
| author | Chris McDonough <chrism@plope.com> | 2011-10-05 09:05:00 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-10-05 09:05:00 -0400 |
| commit | 33796033414d4460381531e713622a21401972a6 (patch) | |
| tree | 8a6eb9ddf16474f2aea9f145aebfeb9b22729905 /setup.py | |
| parent | 0e0cb766f9b8c49ce53123fe9d13d0184196e9b1 (diff) | |
| download | pyramid-33796033414d4460381531e713622a21401972a6.tar.gz pyramid-33796033414d4460381531e713622a21401972a6.tar.bz2 pyramid-33796033414d4460381531e713622a21401972a6.zip | |
turn all paster commands into scripts
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 11 |
1 files changed, 5 insertions, 6 deletions
@@ -39,7 +39,7 @@ install_requires=[ 'zope.deprecation >= 3.5.0', # py3 compat 'venusian >= 1.0a1', # ``onerror`` 'translationstring >= 0.4', # py3 compat - 'glue', + 'PasteDeploy >= 1.5.0', # py3 compat ] tests_require = install_requires + [ @@ -89,15 +89,14 @@ setup(name='pyramid', zodb=pyramid.scaffolds:ZODBProjectTemplate routesalchemy=pyramid.scaffolds:RoutesAlchemyProjectTemplate alchemy=pyramid.scaffolds:AlchemyProjectTemplate - [glue.command] - pshell=pyramid.paster:PShellCommand - proutes=pyramid.paster:PRoutesCommand - pviews=pyramid.paster:PViewsCommand - ptweens=pyramid.paster:PTweensCommand [console_scripts] bfg2pyramid = pyramid.fixers.fix_bfg_imports:main pcreate = pyramid.scripts.pcreate:main pserve = pyramid.scripts.pserve:main + pshell = pyramid.scripts.pshell:main + proutes = pyramid.scripts.proutes:main + pviews = pyramid.scripts.pviews:main + ptweens = pyramid.scripts.ptweens:main [paste.server_runner] wsgiref = pyramid.scripts.pserve:wsgiref_server_runner """ |
