Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .binstar.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
package: prompt_toolkit

platform:
- linux-64

engine:
- python=3.4
- python=3.5

script:
- conda build -c xonsh recipe

after_success:
- conda convert -p all /opt/miniconda/conda-bld/linux-64/prompt_toolkit*.tar.bz2 -o /opt/miniconda/conda-bld

after_failure:
- echo "Build failed!"

build_targets:
- /opt/miniconda/conda-bld/*/*.tar.bz2
1 change: 1 addition & 0 deletions recipe/bld.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python setup.py install
27 changes: 27 additions & 0 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
package:
name: prompt_toolkit
version: {{ environ['GIT_DESCRIBE_TAG'] }}

source:
path: ../

build:
script: python setup.py install
number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }}

requirements:
build:
- python
- pygments
- wcwidth
- six
run:
- python
- pygments
- wcwidth
- six


about:
home: https://github.com/jonathanslenders/python-prompt-toolkit
summary: prompt_toolkit is a library for building powerful interactive command lines in Python.