view 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
line wrap: on
line source

from setuptools import setup, find_packages
import sys, os

version = '0.1.1'

setup(name='smartopen',
      version=version,
      description="open text in a browser contextually",
      long_description="""\
""",
      classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
      keywords='',
      author='Jeff Hammel',
      author_email='k0scist@gmail.com',
      url='http://k0s.org/hg/smartopen',
      license='GPL',
      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
      include_package_data=True,
      zip_safe=False,
      install_requires=[
          # -*- Extra requirements: -*-
      ],
      entry_points="""
      # -*- Entry points: -*-
      [console_scripts]
      smartopen = smartopen.smartopen:main

      [smartopen.locations]
      URL = smartopen.handlers:URL
      GoogleMaps = smartopen.handlers:GoogleMaps
      Wikipedia = smartopen.handlers:Wikipedia
      Google = smartopen.handlers:Google
      Trac = smartopen.handlers:Trac
      """,
      )