blob: 2421ddb40bf558b029a5e881ce28abb3b2883d1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/bin/python2
# Since igcc doesn't come with a setup.py, we'll supply our own
from distutils.core import setup
setup(
name='IGCC',
version='0.2',
description='Interactive GCC real-eval-print loop for C and C++ programmers',
author='Andy Balaam',
url='https://www.artificialworlds.net/wiki/IGCC/IGCC',
packages=['libigcc'],
scripts=['igcc'],
)
|