21 lines
544 B
Python
21 lines
544 B
Python
#!/usr/bin/env python
|
|
"""An installation script for IMProved."""
|
|
|
|
from distutils.core import setup
|
|
import improved
|
|
|
|
setup(
|
|
name='IMProved',
|
|
description='An embeddable IMP interpreter',
|
|
author=IMProved.__author__,
|
|
author_email=IMProved.__author_mail__,
|
|
version=IMProved.__version__,
|
|
url=IMProved.__url__,
|
|
long_description=IMProved.__longdescr__,
|
|
classifiers=IMProved.__classifiers__,
|
|
keywords=IMProved.__keywords__,
|
|
packages=['IMProved'],
|
|
license="GPLv2",
|
|
platforms=['Linux', 'OS X', 'Windows']
|
|
)
|