distutils setup script

This commit is contained in:
Jeremy Hylton 2000-09-20 02:35:19 +00:00
parent bdd901714d
commit 9c36a41694
1 changed files with 9 additions and 0 deletions

9
Tools/compiler/setup.py Normal file
View File

@ -0,0 +1,9 @@
#!/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"])