File: setup.py

package info (click to toggle)
pythoncad 0.1.23-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,044 kB
  • ctags: 3,568
  • sloc: python: 54,867; sh: 100; makefile: 39
file content (24 lines) | stat: -rw-r--r-- 573 bytes parent folder | download
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 Art Haas
#

#
# Install pythoncad using the distutils method
#

from distutils.core import setup

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