forked from pystorm/streamparse
-
Notifications
You must be signed in to change notification settings - Fork 2
/
conda.yaml
50 lines (43 loc) · 920 Bytes
/
conda.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package:
name: streamparse
version: "{{ environ.get('GIT_DESCRIBE_TAG', '').replace('v', '') }}"
source:
git_url: ./
build:
number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }}
script:
- cd $RECIPE_DIR
- $PYTHON setup.py install
entry_points:
- sparse = streamparse.cmdln:main
- streamparse = streamparse.cmdln:main
requirements:
build:
- python
- setuptools
- invoke
- fabric
- docopt
- jinja2
- six
- leiningen
run:
- python
- invoke
- fabric
- docopt
- jinja2
- six
- leiningen
test:
imports:
- streamparse
- streamparse.bootstrap
- streamparse.ext
commands:
- sparse --help
- streamparse --help
about:
home: https://github.com/Parsely/streamparse
license: Apache License 2.0
summary: 'streamparse lets you run Python code against real-time streams of data. Integrates with Apache Storm.'