Skip to content

Commit

Permalink
Added conda recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
jaimergp committed Jan 27, 2016
1 parent d7a7733 commit 1a8e160
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 198 deletions.
2 changes: 2 additions & 0 deletions conda-recipe/bld.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
python setup.py install
if errorlevel 1 exit 1
2 changes: 2 additions & 0 deletions conda-recipe/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/bash
$PYTHON setup.py install
23 changes: 23 additions & 0 deletions conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
package:
name: pychimera
version: "0.0.8"

about:
home: https://github.com/insilichem/pychimera
license: LGPL
summary: Use UCSF Chimera Python API in a standard Python 2.7 interpreter.

source:
path: ../

requirements:
build:
- python 2.7*
- setuptools

run:
- python 2.7*

test:
imports:
- pychimera
196 changes: 0 additions & 196 deletions pychimera.py

This file was deleted.

2 changes: 1 addition & 1 deletion pychimera/pychimera.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import subprocess

__author__ = "Jaime Rodríguez-Guerra"
__version_info__ = (0, 0, 3)
__version_info__ = (0, 0, 8)
__version__ = '.'.join(map(str, __version_info__))


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from setuptools import setup
import os

VERSION = "0.0.7"
VERSION = "0.0.8"


def read(fname):
Expand Down

0 comments on commit 1a8e160

Please sign in to comment.