forked from M-Labs/artiq
conda: add conda package recipe for pythonparser. Closes #122
This commit is contained in:
parent
4a907dcb33
commit
fde6f42454
|
@ -0,0 +1,2 @@
|
|||
pip install regex
|
||||
%PYTHON% setup.py install
|
|
@ -0,0 +1,2 @@
|
|||
pip install regex
|
||||
$PYTHON setup.py install
|
|
@ -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.'
|
Loading…
Reference in New Issue