Mercurial > hg > smartopen
annotate setup.py @ 4:01015b36290a
look for home configuration file if it exists
| author | k0s <k0scist@gmail.com> |
|---|---|
| date | Sat, 21 Nov 2009 19:52:10 -0500 |
| parents | c5f19f51e1e8 |
| children | 7328744920de |
| rev | line source |
|---|---|
| 0 | 1 from setuptools import setup, find_packages |
| 2 import sys, os | |
| 3 | |
|
4
01015b36290a
look for home configuration file if it exists
k0s <k0scist@gmail.com>
parents:
3
diff
changeset
|
4 version = '0.1.1' |
| 0 | 5 |
| 6 setup(name='smartopen', | |
| 7 version=version, | |
| 8 description="open text in a browser contextually", | |
| 9 long_description="""\ | |
| 10 """, | |
| 11 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers | |
| 12 keywords='', | |
| 13 author='Jeff Hammel', | |
| 14 author_email='k0scist@gmail.com', | |
| 3 | 15 url='http://k0s.org/hg/smartopen', |
| 0 | 16 license='GPL', |
| 17 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | |
| 18 include_package_data=True, | |
| 19 zip_safe=False, | |
| 20 install_requires=[ | |
| 21 # -*- Extra requirements: -*- | |
| 22 ], | |
| 23 entry_points=""" | |
| 24 # -*- Entry points: -*- | |
| 25 [console_scripts] | |
| 26 smartopen = smartopen.smartopen:main | |
| 27 | |
| 28 [smartopen.locations] | |
| 1 | 29 URL = smartopen.handlers:URL |
| 30 GoogleMaps = smartopen.handlers:GoogleMaps | |
| 31 Wikipedia = smartopen.handlers:Wikipedia | |
| 32 Google = smartopen.handlers:Google | |
| 2 | 33 Trac = smartopen.handlers:Trac |
| 0 | 34 """, |
| 35 ) |
