Created
April 15, 2015 15:26
-
-
Save hhuuggoo/51c1cbc6dd105699d201 to your computer and use it in GitHub Desktop.
simplest conda recipe for pure python package (without setuptools!)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package: | |
name: examplepackage | |
version: "1.0" | |
source: | |
path: ../ | |
requirements: | |
build: | |
- python | |
build: | |
#linux only - if you want windows then you would have to either | |
#create 2 recipes, or split this out into build.sh or build.bat | |
script : cp -rf $SRC_DIR/examplepackage $SP_DIR |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment