Staging
v0.8.1
https://github.com/python/cpython
Raw File
Tip revision: 81467b814626e35cc988791ff29b818f67e4a148 authored by cvs2svn on 26 September 2000, 18:00:20 UTC
This commit was manufactured by cvs2svn to create tag 'r20b2'.
Tip revision: 81467b8
setup.py
#!/usr/bin/env python

from distutils.core import setup

setup(name = "compiler",
      version = "1.0",
      author = "Jeremy Hylton",
      author_email = "jeremy@beopen.com",
      packages = ["compiler"])
back to top