#!/usr/bin/env python #Copyright 2007 Sebastian Hagen # This file is part of carrcrawl. # carrcrawl is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 # as published by the Free Software Foundation # carrcrawl is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with carrcrawl; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA from distutils.core import setup setup(name='carrcrawl', version='0.2', description='Carrcrawl', author='Sebastian Hagen', author_email='sebastian_hagen@memespace.net', url='svn://svn.memespace.net/hobby/carrcrawl', packages=('carrcrawl',), package_dir={'':'src'} )