prompt_toolkit is a library for building powerful interactive command lines in

Python. It ships with a nice interactive Python shell (called ptpython) built
on top of the library.

prompt_toolkit could be a replacement for readline, but it can be much more
than that.

WWW: https://github.com/jonathanslenders/python-prompt-toolkit
This commit is contained in:
Steven Kreuzer 2014-09-30 19:13:29 +00:00
parent 20b8e9cc6a
commit cc395be60d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=369656
4 changed files with 31 additions and 0 deletions

View file

@ -3826,6 +3826,7 @@
SUBDIR += py-pqueue
SUBDIR += py-prettytable
SUBDIR += py-prioritized_methods
SUBDIR += py-prompt_toolkit
SUBDIR += py-protobuf
SUBDIR += py-protocols
SUBDIR += py-protocols-devel

View file

@ -0,0 +1,20 @@
# Created by: Steven Kreuzer <skreuzer@FreeBSD.org>
# $FreeBSD$
PORTNAME= prompt_toolkit
PORTVERSION= 0.18
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= skreuzer@FreeBSD.org
COMMENT= Library for building powerful interactive command lines in Python
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}docopt>=0.6.2:${PORTSDIR}/devel/py-docopt \
${PYTHON_PKGNAMEPREFIX}six>=1.7.3:${PORTSDIR}/devel/py-six \
${PYTHON_PKGNAMEPREFIX}pygments>=1.6:${PORTSDIR}/textproc/py-pygments
USES= python:2
USE_PYTHON= distutils autoplist
.include <bsd.port.mk>

View file

@ -0,0 +1,2 @@
SHA256 (prompt_toolkit-0.18.tar.gz) = 2dc598e2633a374858a50b19d08d8e4a648294a2048e0423771b86bd380023fb
SIZE (prompt_toolkit-0.18.tar.gz) = 71634

View file

@ -0,0 +1,8 @@
prompt_toolkit is a library for building powerful interactive command lines in
Python. It ships with a nice interactive Python shell (called ptpython) built
on top of the library.
prompt_toolkit could be a replacement for readline, but it can be much more
than that.
WWW: https://github.com/jonathanslenders/python-prompt-toolkit