home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 May / PCWorld_2002-05_cd.bin / Software / TemaCD / activepython / ActivePython-2.1.1.msi / Python21_Tools_compiler_setup.py < prev    next >
Encoding:
Python Source  |  2001-07-26  |  219 b   |  10 lines

  1. #!/usr/bin/env python
  2.  
  3. from distutils.core import setup
  4.  
  5. setup(name = "compiler",
  6.       version = "1.0",
  7.       author = "Jeremy Hylton",
  8.       author_email = "jeremy@beopen.com",
  9.       packages = ["compiler"])
  10.