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