Mercurial > hg > smartopen
comparison setup.py @ 8:44950f376e98
add FedEx tracking number handler
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Thu, 08 Apr 2010 14:37:48 -0700 |
parents | d5343f681ef9 |
children | a963acb1713d |
comparison
equal
deleted
inserted
replaced
7:d5343f681ef9 | 8:44950f376e98 |
---|---|
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.3' | 9 version = '0.1.4' |
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, |
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 Bugzilla = smartopen.handlers:Bugzilla |
39 FedEx = smartopen.handlers:FedEx | |
39 """, | 40 """, |
40 ) | 41 ) |