|
Revision 110, 386 bytes
(checked in by athomas, 3 years ago)
|
- Changed MERGE behaviour so that a list of grammars nust be returned by the callable.
- Made COMPLETE automatically cull candidates that do not match the current prefix.
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
# Egg power! |
|---|
| 2 |
try: |
|---|
| 3 |
from setuptools import setup, Extension |
|---|
| 4 |
except ImportError: |
|---|
| 5 |
from distutils.core import setup, Extension |
|---|
| 6 |
|
|---|
| 7 |
setup( |
|---|
| 8 |
name='cly', |
|---|
| 9 |
url='http://projects.swapoff.org/cly/', |
|---|
| 10 |
author='Alec Thomas', |
|---|
| 11 |
author_email='alec@swapoff.org', |
|---|
| 12 |
version='0.9', |
|---|
| 13 |
packages=['cly', 'crash'], |
|---|
| 14 |
ext_modules=[Extension('cly.rlext', ['cly/rlext.c'], libraries = ['readline', 'curses'])] |
|---|
| 15 |
) |
|---|