File: setup.py

package info (click to toggle)
pythoncad 0.1.37.0-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 3,816 kB
  • ctags: 5,020
  • sloc: python: 64,182; makefile: 8
file content (24 lines) | stat: -rw-r--r-- 658 bytes parent folder | download | duplicates (2)
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'],
     )