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

Commit

Permalink
Add uritemplate.py and github3.py
Browse files Browse the repository at this point in the history
  • Loading branch information
asmeurer committed Aug 26, 2014
1 parent 8a49dd0 commit 43f14cd
Show file tree
Hide file tree
Showing 6 changed files with 161 additions and 0 deletions.
8 changes: 8 additions & 0 deletions github3.py/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 github3.py/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.
68 changes: 68 additions & 0 deletions github3.py/meta.yaml
@@ -0,0 +1,68 @@
package:
name: github3.py
version: !!str 0.9.1

source:
fn: github3.py-0.9.1.tar.gz
url: https://pypi.python.org/packages/source/g/github3.py/github3.py-0.9.1.tar.gz
md5: 021890b36a21cf7d05c2ec8c7608eee9
# 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
#
# - github3.py = github3.py:main
#
# Would create an entry point called github3.py that calls github3.py.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
- requests >=2.0
- uritemplate.py >=0.2.0

run:
- python
- requests >=2.0
- uritemplate.py >=0.2.0

test:
# Python imports
imports:
- github3
- github3.gists
- github3.issues
- github3.repos
- github3.search

#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: https://github3py.readthedocs.org
license: BSD
summary: 'Python wrapper for the GitHub API(http://developer.github.com/v3)'

# See
# http://docs.continuum.io/conda/build.html for
# more information about meta.yaml
8 changes: 8 additions & 0 deletions uritemplate.py/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 uritemplate.py/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.
59 changes: 59 additions & 0 deletions uritemplate.py/meta.yaml
@@ -0,0 +1,59 @@
package:
name: uritemplate.py
version: !!str 0.3.0

source:
fn: uritemplate.py-0.3.0.tar.gz
url: https://pypi.python.org/packages/source/u/uritemplate.py/uritemplate.py-0.3.0.tar.gz
md5: 4dd14904ba502c6ff8d6276e004404de
# 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
#
# - uritemplate.py = uritemplate.py:main
#
# Would create an entry point called uritemplate.py that calls uritemplate.py.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

run:
- python

test:
# Python imports
imports:
- uritemplate

#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: https://uritemplate.readthedocs.org
license: BSD
summary: 'URI templates'

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

0 comments on commit 43f14cd

Please sign in to comment.