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:
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
|
@ -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
|
||||
|
|
20
devel/py-prompt_toolkit/Makefile
Normal file
20
devel/py-prompt_toolkit/Makefile
Normal 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>
|
2
devel/py-prompt_toolkit/distinfo
Normal file
2
devel/py-prompt_toolkit/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
SHA256 (prompt_toolkit-0.18.tar.gz) = 2dc598e2633a374858a50b19d08d8e4a648294a2048e0423771b86bd380023fb
|
||||
SIZE (prompt_toolkit-0.18.tar.gz) = 71634
|
8
devel/py-prompt_toolkit/pkg-descr
Normal file
8
devel/py-prompt_toolkit/pkg-descr
Normal 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
|
Loading…
Reference in a new issue