mirror of
https://github.com/wassname/pyreadline.git
synced 2026-06-27 16:10:38 +08:00
11 lines
258 B
Python
11 lines
258 B
Python
from distutils.core import setup
|
|
|
|
setup(name="pyreadline",
|
|
version="1.13-svn",
|
|
description="Python implementation of GNU readline",
|
|
author="Gary Bishop",
|
|
author_email="gb@cs.unc.edu",
|
|
packages=['pyreadline'],
|
|
)
|
|
|