Skip to content

Commit

Permalink
Merge pull request #1192 from sodre/master
Browse files Browse the repository at this point in the history
Add IPython-SQL to conda-forge
  • Loading branch information
jakirkham committed Aug 24, 2016
2 parents 244041d + 1ae30bd commit d7822d1
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions recipes/ipython-sql/meta.yaml
@@ -0,0 +1,51 @@
{% set version = "0.3.6" %}
{% set md5 = "d4feb00ac5806d7640b2545a43974766" %}

package:
name: ipython-sql
version: {{ version }}

source:
fn: ipython-sql-{{ version }}.tar.gz
url: https://pypi.python.org/packages/source/i/ipython-sql/ipython-sql-{{ version }}.tar.gz
md5: {{ md5 }}

build:
number: 0
script: python setup.py install --single-version-externally-managed --record record.txt

requirements:
build:
- python
- setuptools
- prettytable
- ipython >=1.0 # [not win]
- ipython >=1.0 # [win and not py35]
- ipython >=1.0,<5 # [win and py35]
- sqlparse
- six

run:
- python
- prettytable
- ipython >=1.0 # [not win]
- ipython >=1.0 # [win and not py35]
- ipython >=1.0,<5 # [win and py35]
- sqlalchemy >=0.6.7
- sqlparse
- six

test:
imports:
- sql

about:
home: https://pypi.python.org/pypi/ipython-sql
license: MIT
#TODO catherinedevlin/ipython-sql#58
#license_file: <LICENSE>
summary: 'RDBMS access via IPython'

extra:
recipe-maintainers:
- sodre

0 comments on commit d7822d1

Please sign in to comment.