Skip to content

Commit fde6f42

Browse files
committedSep 1, 2015
conda: add conda package recipe for pythonparser. Closes #122
1 parent 4a907dc commit fde6f42

File tree

3 files changed

+28
-0
lines changed

3 files changed

+28
-0
lines changed
 

Diff for: ‎conda/pythonparser/bld.bat

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
pip install regex
2+
%PYTHON% setup.py install

Diff for: ‎conda/pythonparser/build.sh

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
pip install regex
2+
$PYTHON setup.py install

Diff for: ‎conda/pythonparser/meta.yaml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
package:
2+
name: pythonparser
3+
version: 0.0
4+
5+
source:
6+
git_url: https://github.com/m-labs/pythonparser
7+
git_tag: master
8+
9+
build:
10+
number: 0
11+
12+
requirements:
13+
build:
14+
- python
15+
- setuptools
16+
17+
test:
18+
imports:
19+
- pythonparser
20+
21+
about:
22+
home: http://m-labs.hk/pythonparser/
23+
license: BSD
24+
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 commit comments

Comments
 (0)
Please sign in to comment.