comparison setup.py @ 1:10fc4904c10f

now can pass data
author k0s <k0scist@gmail.com>
date Sat, 21 Nov 2009 17:29:39 -0500
parents d6fa501af82f
children f084e152dd47
comparison
equal deleted inserted replaced
0:d6fa501af82f 1:10fc4904c10f
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 version = '0.0' 4 version = '0.1'
5 5
6 setup(name='smartopen', 6 setup(name='smartopen',
7 version=version, 7 version=version,
8 description="open text in a browser contextually", 8 description="open text in a browser contextually",
9 long_description="""\ 9 long_description="""\
24 # -*- Entry points: -*- 24 # -*- Entry points: -*-
25 [console_scripts] 25 [console_scripts]
26 smartopen = smartopen.smartopen:main 26 smartopen = smartopen.smartopen:main
27 27
28 [smartopen.locations] 28 [smartopen.locations]
29 URL = smartopen.handlers:URL
30 GoogleMaps = smartopen.handlers:GoogleMaps
31 Wikipedia = smartopen.handlers:Wikipedia
32 Google = smartopen.handlers:Google
29 """, 33 """,
30 ) 34 )