comparison setup.py @ 7:d5343f681ef9

add bugzilla handler
author Jeff Hammel <k0scist@gmail.com>
date Wed, 10 Mar 2010 14:49:18 -0500
parents a03adefacb62
children 44950f376e98
comparison
equal deleted inserted replaced
6:a03adefacb62 7:d5343f681ef9
4 try: 4 try:
5 description = file('README.txt').read() 5 description = file('README.txt').read()
6 except: 6 except:
7 description = '' 7 description = ''
8 8
9 version = '0.1.2' 9 version = '0.1.3'
10 10
11 setup(name='smartopen', 11 setup(name='smartopen',
12 version=version, 12 version=version,
13 description="open text in a browser contextually", 13 description="open text in a browser contextually",
14 long_description=description, 14 long_description=description,
33 URL = smartopen.handlers:URL 33 URL = smartopen.handlers:URL
34 GoogleMaps = smartopen.handlers:GoogleMaps 34 GoogleMaps = smartopen.handlers:GoogleMaps
35 Wikipedia = smartopen.handlers:Wikipedia 35 Wikipedia = smartopen.handlers:Wikipedia
36 Google = smartopen.handlers:Google 36 Google = smartopen.handlers:Google
37 Trac = smartopen.handlers:Trac 37 Trac = smartopen.handlers:Trac
38 Bugzilla = smartopen.handlers:Bugzilla
38 """, 39 """,
39 ) 40 )