view nose_notify/setup.py @ 2:3cdd7f281e28 v0.2

Transformando tudo em um egg
author Walter Cruz <walter.php@gmail.com>
date Fri, 29 Feb 2008 14:54:33 -0300
parents
children
line wrap: on
line source

from setuptools import setup, find_packages
import sys, os

version = '0.2'

setup(name='nose_notify',
      version=version,
      description="Nose Notify",
      long_description="""\
Nose Notify""",
      classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
      keywords='',
      author='Walter Rodrigo de S\xe1 Cruz',
      author_email='walter.php@gmail.com',
      url='',
      license='GPL',
      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
      include_package_data=True,
      zip_safe=True,
      install_requires=[
          # -*- Extra requirements: -*-
      ],
        entry_points = {
        'nose.plugins.0.10': [
            'NoseNotify= nose_notify.nose_notify:NoseNotifyPlugin'
            ]
        }
      )