initial; lexer and parser

This commit is contained in:
hellerve
2015-07-07 13:51:15 +02:00
parent 0bc4bc1616
commit f9c1f2a45d
7 changed files with 490 additions and 0 deletions

20
setup.py Normal file
View 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']
)