Mercurial > hg > smartopen
annotate 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 |
| rev | line source |
|---|---|
| 0 | 1 from setuptools import setup, find_packages |
| 2 import sys, os | |
| 3 | |
| 5 | 4 try: |
|
14
a62fbff067f8
start bringing this whole thing up to speed
Jeff Hammel <jhammel@mozilla.com>
parents:
12
diff
changeset
|
5 description = file(os.path.join(os.path.dirname(__file__), 'README.txt')).read() |
| 5 | 6 except: |
| 7 description = '' | |
| 8 | |
| 18 | 9 version = '0.2.1' |
| 0 | 10 |
| 11 setup(name='smartopen', | |
| 12 version=version, | |
| 13 description="open text in a browser contextually", | |
| 5 | 14 long_description=description, |
| 0 | 15 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers |
| 16 keywords='', | |
| 17 author='Jeff Hammel', | |
| 18 author_email='k0scist@gmail.com', | |
| 3 | 19 url='http://k0s.org/hg/smartopen', |
| 0 | 20 license='GPL', |
| 21 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | |
| 22 include_package_data=True, | |
| 23 zip_safe=False, | |
| 24 install_requires=[ | |
| 25 # -*- Extra requirements: -*- | |
| 26 ], | |
| 27 entry_points=""" | |
| 28 # -*- Entry points: -*- | |
| 29 [console_scripts] | |
| 30 smartopen = smartopen.smartopen:main | |
| 18 | 31 url2txt = smartopen.url2txt:main |
| 0 | 32 |
| 33 [smartopen.locations] | |
| 1 | 34 URL = smartopen.handlers:URL |
| 35 GoogleMaps = smartopen.handlers:GoogleMaps | |
| 36 Wikipedia = smartopen.handlers:Wikipedia | |
| 11 | 37 Wiktionary = smartopen.handlers:Wiktionary |
| 1 | 38 Google = smartopen.handlers:Google |
| 2 | 39 Trac = smartopen.handlers:Trac |
| 7 | 40 Bugzilla = smartopen.handlers:Bugzilla |
|
8
44950f376e98
add FedEx tracking number handler
Jeff Hammel <jhammel@mozilla.com>
parents:
7
diff
changeset
|
41 FedEx = smartopen.handlers:FedEx |
|
10
a963acb1713d
add a new handler: MercurialRevision
Jeff Hammel <jhammel@mozilla.com>
parents:
8
diff
changeset
|
42 MercurialRevision = smartopen.handlers:MercurialRevision |
|
14
a62fbff067f8
start bringing this whole thing up to speed
Jeff Hammel <jhammel@mozilla.com>
parents:
12
diff
changeset
|
43 UbuntuPackage = smartopen.handlers:UbuntuPackage |
| 0 | 44 """, |
| 45 ) |
