Skip to content
This repository has been archived by the owner on Sep 22, 2020. It is now read-only.

Commit

Permalink
flower added
Browse files Browse the repository at this point in the history
  • Loading branch information
cehbrecht committed May 17, 2015
1 parent ecd1917 commit 83498e9
Show file tree
Hide file tree
Showing 3 changed files with 94 additions and 0 deletions.
8 changes: 8 additions & 0 deletions flower/bld.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
"%PYTHON%" setup.py install
if errorlevel 1 exit 1

:: Add more build steps here, if they are necessary.

:: See
:: http://docs.continuum.io/conda/build.html
:: for a list of environment variables that are set during the build process.
9 changes: 9 additions & 0 deletions flower/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/bash

$PYTHON setup.py install

# Add more build steps here, if they are necessary.

# See
# http://docs.continuum.io/conda/build.html
# for a list of environment variables that are set during the build process.
77 changes: 77 additions & 0 deletions flower/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
package:
name: flower
version: "0.8.2"

source:
fn: flower-0.8.2.tar.gz
url: https://pypi.python.org/packages/source/f/flower/flower-0.8.2.tar.gz
md5: 613a4f2edf92f447ef556b9dceef968d
# patches:
# List any patch files here
# - fix.patch

build:
preserve_egg_dir: True
entry_points:
# Put any entry points (scripts to be generated automatically) here. The
# syntax is module:function. For example
#
# - flower = flower:main
#
# Would create an entry point called flower that calls flower.main()

- flower = flower.__main__:main

# If this is a new build for the same version, increment the build
# number. If you do not include this key, it defaults to 0.
# number: 1

requirements:
build:
- python
- setuptools
- celery >=2.5.0
- tornado >=4.0.0
- babel
- pytz
- futures

run:
- python
- setuptools
- celery >=2.5.0
- tornado >=4.0.0
- babel
- pytz
- futures

test:
# Python imports
imports:
- flower
- flower.api
- flower.utils
- flower.utils.backports
- flower.views

commands:
# You can put test commands to be run here. Use this to test that the
# entry points work.

- flower --help

# You can also put a file called run_test.py in the recipe that will be run
# at test time.

# requires:
# Put any additional test requirements here. For example
# - nose

about:
home: https://github.com/mher/flower
license: BSD License
summary: 'Celery Flower'

# See
# http://docs.continuum.io/conda/build.html for
# more information about meta.yaml

0 comments on commit 83498e9

Please sign in to comment.