Navigation Menu

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

Commit

Permalink
Add tm
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-blanchard committed Nov 27, 2013
1 parent 3254873 commit fe7d3d9
Show file tree
Hide file tree
Showing 3 changed files with 77 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tm/bld.bat
@@ -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 tm/build.sh
@@ -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.
60 changes: 60 additions & 0 deletions tm/meta.yaml
@@ -0,0 +1,60 @@
package:
name: tm
version: 0.1.6

source:
fn: tm-0.1.6.zip
url: http://mappa.googlecode.com/files/tm-0.1.6.zip
#md5:
# patches:
# List any patch files here
# - fix.patch

build:
entry_points:
# Put any entry points (scripts to be generated automatically) here. The
# syntax is module:function. For example
#
# - tm = tm:main
#
# Would create an entry point called tm that calls tm.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

run:
- python
- setuptools

test:
# Python imports
imports:
- tm
- tm.mio

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


# 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:
license: UNKNOWN

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

0 comments on commit fe7d3d9

Please sign in to comment.