#!/usr/bin/env python
#
# Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007 Art Haas
# Copyright (c) 2009 Matteo Boscolo

#
# Install pythoncad using the distutils method
#

from distutils.core import setup

setup(name="PythonCAD",
      version="DS1-R37",
      description="CAD built from Python",
      author="Art Haas,Matteo Boscolo",
      author_email="ahaas@airmail.net,Euro_ii@libero.it",
      url="http://www.pythoncad.org/",
      license="GPL",
      packages=['PythonCAD',
                'PythonCAD/Generic',
                'PythonCAD/Interface',
                'PythonCAD/Interface/Cocoa',
                'PythonCAD/Interface/Gtk'],
     )
