comparison setup.py @ 18:122b9dcffdaa default tip

stub url2txt
author Jeff Hammel <jhammel@mozilla.com>
date Sat, 03 Aug 2013 23:17:04 -0700
parents a62fbff067f8
children
comparison
equal deleted inserted replaced
17:a815b73c8e19 18:122b9dcffdaa
4 try: 4 try:
5 description = file(os.path.join(os.path.dirname(__file__), 'README.txt')).read() 5 description = file(os.path.join(os.path.dirname(__file__), 'README.txt')).read()
6 except: 6 except:
7 description = '' 7 description = ''
8 8
9 version = '0.2' 9 version = '0.2.1'
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,
26 ], 26 ],
27 entry_points=""" 27 entry_points="""
28 # -*- Entry points: -*- 28 # -*- Entry points: -*-
29 [console_scripts] 29 [console_scripts]
30 smartopen = smartopen.smartopen:main 30 smartopen = smartopen.smartopen:main
31 url2txt = smartopen.url2txt:main
31 32
32 [smartopen.locations] 33 [smartopen.locations]
33 URL = smartopen.handlers:URL 34 URL = smartopen.handlers:URL
34 GoogleMaps = smartopen.handlers:GoogleMaps 35 GoogleMaps = smartopen.handlers:GoogleMaps
35 Wikipedia = smartopen.handlers:Wikipedia 36 Wikipedia = smartopen.handlers:Wikipedia