~ubuntu-branches/ubuntu/saucy/beaker/saucy

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Bazaar Package Importer
  • Author(s): Piotr Ożarowski
  • Date: 2010-03-03 00:37:43 UTC
  • mfrom: (1.1.16 upstream) (2.1.18 sid)
  • Revision ID: james.westby@ubuntu.com-20100303003743-ydl9a2st185leauo
Tags: 1.5.3-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
from setuptools import setup, find_packages
4
4
 
5
 
version = '1.5.1'
 
5
version = '1.5.3'
 
6
 
 
7
extra = {}
 
8
if sys.version_info >= (3, 0):
 
9
    extra.update(
 
10
        use_2to3=True,
 
11
    )
6
12
 
7
13
pycryptopp = 'pycryptopp>=0.5.12'
8
14
tests_require = ['nose', 'webtest']
104
110
          google = beaker.ext.google:GoogleNamespaceManager
105
111
          sqla = beaker.ext.sqla:SqlaNamespaceManager
106
112
      """,
 
113
      **extra
107
114
)