Chris McDonough
2011-07-12 f55b54a16def0bb0c463ee302dd12eefaa3638ad
setup.py
@@ -1,6 +1,6 @@
##############################################################################
#
# Copyright (c) 2008-2010 Agendaless Consulting and Contributors.
# Copyright (c) 2008-2011 Agendaless Consulting and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the BSD-like license at
@@ -12,8 +12,6 @@
#
##############################################################################
__version__ = '0.0'
import os
import platform
import sys
@@ -22,40 +20,42 @@
here = os.path.abspath(os.path.dirname(__file__))
try:
    README = open(os.path.join(here, 'README.txt')).read()
    README = open(os.path.join(here, 'README.rst')).read()
    CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
except IOError:
    README = CHANGES = ''
install_requires=[
    'Chameleon >= 1.2.3',
    'Mako',
    'Mako >= 0.3.6', # strict_undefined
    'Paste > 1.7', # temp version pin to prevent PyPi install failure :-(
    'PasteDeploy',
    'PasteScript',
    'WebOb >= 1.0', # no "default_charset"
    'WebOb >= 1.0.2', # no "default_charset"; request.script_name doesnt error
    'repoze.lru',
    'setuptools',
    'zope.component >= 3.6.0', # independent of zope.hookable
    'zope.configuration',
    'zope.deprecation',
    'zope.interface >= 3.5.1',  # 3.5.0 comment: "allow to bootstrap on jython"
    'venusian >= 0.2',
    'venusian >= 0.5', # ``codeinfo``
    'translationstring',
    ]
if platform.system() == 'Java':
    tests_require = install_requires + ['twill']
    tests_require = install_requires + ['WebTest', 'virtualenv']
else:
    tests_require= install_requires + ['Sphinx', 'docutils', 'coverage',
                                       'twill', 'repoze.sphinx.autointerface']
    tests_require= install_requires + ['Sphinx', 'docutils',
                                       'WebTest', 'repoze.sphinx.autointerface',
                                       'virtualenv']
if sys.version_info[:2] < (2, 6):
    install_requires.append('simplejson')
    
setup(name='pyramid',
      version=__version__,
      description='The Pyramid web application framework, a Pylons project',
      version='1.1b1',
      description=('The Pyramid web application development framework, a '
                   'Pylons project'),
      long_description=README + '\n\n' +  CHANGES,
      classifiers=[
        "Intended Audience :: Developers",
@@ -65,10 +65,10 @@
        "Topic :: Internet :: WWW/HTTP :: WSGI",
        "License :: Repoze Public License",
        ],
      keywords='web wsgi pylons pyramid bfg',
      keywords='web wsgi pylons pyramid',
      author="Chris McDonough, Agendaless Consulting",
      author_email="pylons-devel@googlegroups.com",
      url="http://pylonshq.com",
      url="http://pylonsproject.org",
      license="BSD-derived (http://www.repoze.org/LICENSE.txt)",
      packages=find_packages(),
      include_package_data=True,
@@ -78,16 +78,14 @@
      test_suite="pyramid.tests",
      entry_points = """\
        [paste.paster_create_template]
        pyramid_starter=pyramid.paster:StarterProjectTemplate
        pyramid_starter_zcml=pyramid.paster:StarterZCMLProjectTemplate
        pyramid_zodb=pyramid.paster:ZODBProjectTemplate
        pyramid_routesalchemy=pyramid.paster:RoutesAlchemyProjectTemplate
        pyramid_alchemy=pyramid.paster:AlchemyProjectTemplate
        pylons_basic=pyramid.paster:PylonsBasicProjectTemplate
        pylons_minimal=pyramid.paster:PylonsMinimalProjectTemplate
        pylons_sqla=pyramid.paster:PylonsSQLAlchemyProjectTemplate
        pyramid_starter=pyramid.scaffolds:StarterProjectTemplate
        pyramid_zodb=pyramid.scaffolds:ZODBProjectTemplate
        pyramid_routesalchemy=pyramid.scaffolds:RoutesAlchemyProjectTemplate
        pyramid_alchemy=pyramid.scaffolds:AlchemyProjectTemplate
        [paste.paster_command]
        pshell=pyramid.paster:PShellCommand
        proutes=pyramid.paster:PRoutesCommand
        pviews=pyramid.paster:PViewsCommand
        [console_scripts]
        bfg2pyramid = pyramid.fixers.fix_bfg_imports:main
      """