Skip to content

Commit

Permalink
conda: add conda package recipe for pythonparser. Closes #122
Browse files Browse the repository at this point in the history
fallen committed Sep 1, 2015
1 parent 4a907dc commit fde6f42
Showing 3 changed files with 28 additions and 0 deletions.
2 changes: 2 additions & 0 deletions conda/pythonparser/bld.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
pip install regex
%PYTHON% setup.py install
2 changes: 2 additions & 0 deletions conda/pythonparser/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
pip install regex
$PYTHON setup.py install
24 changes: 24 additions & 0 deletions conda/pythonparser/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
package:
name: pythonparser
version: 0.0

source:
git_url: https://github.com/m-labs/pythonparser
git_tag: master

build:
number: 0

requirements:
build:
- python
- setuptools

test:
imports:
- pythonparser

about:
home: http://m-labs.hk/pythonparser/
license: BSD
summary: 'PythonParser is a Python parser written specifically for use in tooling. It parses source code into an AST that is a superset of Python’s built-in ast module, but returns precise location information for every token.'

0 comments on commit fde6f42

Please sign in to comment.