initial; lexer and parser
This commit is contained in:
20
setup.py
Normal file
20
setup.py
Normal file
@@ -0,0 +1,20 @@
|
||||
#!/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']
|
||||
)
|
Reference in New Issue
Block a user