comparison setup.py @ 14:a62fbff067f8

start bringing this whole thing up to speed
author Jeff Hammel <jhammel@mozilla.com>
date Wed, 01 May 2013 06:56:12 -0700
parents bb995bdf82e2
children 122b9dcffdaa
comparison
equal deleted inserted replaced
13:f11ce7b1a349 14:a62fbff067f8
1 from setuptools import setup, find_packages 1 from setuptools import setup, find_packages
2 import sys, os 2 import sys, os
3 3
4 try: 4 try:
5 description = 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.1.6' 9 version = '0.2'
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,
37 Google = smartopen.handlers:Google 37 Google = smartopen.handlers:Google
38 Trac = smartopen.handlers:Trac 38 Trac = smartopen.handlers:Trac
39 Bugzilla = smartopen.handlers:Bugzilla 39 Bugzilla = smartopen.handlers:Bugzilla
40 FedEx = smartopen.handlers:FedEx 40 FedEx = smartopen.handlers:FedEx
41 MercurialRevision = smartopen.handlers:MercurialRevision 41 MercurialRevision = smartopen.handlers:MercurialRevision
42 UbuntuPackage = smartopen.handlers:UbuntuPackage
42 """, 43 """,
43 ) 44 )