##########################################################################
#
# setup.py: File to build and install the application.
#
#  Python-CDD is a library to make easier to build applications to
#  Custom Debian Distributions.
#  See http://projetos.ossystems.com.br/python-cdd for more information.
#    
# ====================================================================
# Copyright (c) 2002-2005 O.S. Systems.  All rights reserved.
#
# This software is licensed as described in the file COPYING, which
# you should have received as part of this distribution.
#
#########################################################################
# Author: Otavio Salvador <otavio@ossystems.com.br>

from distutils.core import setup

setup(
    name = "python-cdd",
    version = '0.0.4',
    author = "Otavio Salvador",
    author_email = "otavio@debian.org",
    url = "http://projetos.ossystems.com.br/python-cdd/",
    license = "GPL",
    description = "Library to help Custom Debian Distributions related development.",
    packages = [ 'cdd' ]
    )
