1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
#!/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'],
)
|