view setup.py @ 16:f50b4e4ad764

just use no overlap and dont try to be fancy
author Jeff Hammel <jhammel@mozilla.com>
date Sun, 02 Jan 2011 14:04:38 -0800
parents 61038b4e7425
children f9cf249dd512
line wrap: on
line source

from setuptools import setup, find_packages
import sys, os

try:
    description = file('README.txt').read()
except IOError: 
    description = ''

version = "0.1.1"

setup(name='svgsitemap',
      version=version,
      description="a site map using PyGraphviz and svg",
      long_description=description,
      classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
      author='Jeff Hammel',
      author_email='jhammel@mozilla.com',
      url='http://k0s.org/map.svg',
      license="MPL",
      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
      include_package_data=True,
      zip_safe=False,
      install_requires=[
          # -*- Extra requirements: -*-
          'WebOb',	
          'PyGraphviz',
      ],
      entry_points="""
      # -*- Entry points: -*-
      [paste.app_factory]
      main = svgsitemap.factory:factory
      """,
      )