xonsh/recipe/meta.yaml

37 lines
667 B
YAML
Raw Normal View History

2015-03-08 22:48:34 -05:00
package:
name: xonsh
2016-02-24 02:21:06 -05:00
version: {{ environ.get('GIT_DESCRIBE_TAG', '0.0.0') }}
2015-03-08 22:48:34 -05:00
source:
git_url: ../
2015-03-08 22:48:34 -05:00
2015-03-23 01:40:44 -05:00
build:
script: python setup.py install --single-version-externally-managed --record=record.txt
2016-02-24 02:21:06 -05:00
number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }}
skip: True # [py2k]
entry_points:
- xonsh = xonsh.main:main
2015-03-08 22:48:34 -05:00
requirements:
build:
- python
2015-03-08 22:48:34 -05:00
- ply
2015-11-15 09:35:57 -05:00
- setuptools
- jupyter
2015-03-08 22:48:34 -05:00
run:
- python
2015-03-08 22:48:34 -05:00
- ply
- prompt_toolkit
2016-02-04 18:51:57 -05:00
- setproctitle
- pygments
2015-03-08 22:48:34 -05:00
app:
entry: xonsh
icon: ../docs/_static/ascii_conch_part_color.png
2015-03-08 22:48:34 -05:00
about:
2016-02-10 02:43:04 -05:00
home: http://xon.sh/
2015-03-08 22:48:34 -05:00
license: BSD
2016-02-10 02:43:04 -05:00
summary: xonsh is a Python-ish, BASHwards-facing shell.
2015-03-08 22:48:34 -05:00