2000-09-19 23:35:19 -03:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
setup(name = "compiler",
|
|
|
|
version = "1.0",
|
|
|
|
author = "Jeremy Hylton",
|
2001-08-13 12:10:54 -03:00
|
|
|
author_email = "jeremy@zope.com",
|
2000-09-19 23:35:19 -03:00
|
|
|
packages = ["compiler"])
|