Skip to content

Commit 2868517

Browse files
author
stephanie
committed
add testing data
1 parent d848f9a commit 2868517

5 files changed

Lines changed: 9283 additions & 0 deletions

File tree

psycopg2/bld.bat

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
"%PYTHON%" setup.py install
2+
if errorlevel 1 exit 1
3+
4+
:: Add more build steps here, if they are necessary.
5+
6+
:: See
7+
:: http://docs.continuum.io/conda/build.html
8+
:: for a list of environment variables that are set during the build process.

psycopg2/build.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/bash
2+
3+
$PYTHON setup.py install
4+
5+
# Add more build steps here, if they are necessary.
6+
7+
# See
8+
# http://docs.continuum.io/conda/build.html
9+
# for a list of environment variables that are set during the build process.

psycopg2/meta.yaml

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
package:
2+
name: psycopg2
3+
version: "2.6.1"
4+
5+
source:
6+
fn: psycopg2-2.6.1.tar.gz
7+
url: https://pypi.python.org/packages/86/fd/cc8315be63a41fe000cce20482a917e874cdc1151e62cb0141f5e55f711e/psycopg2-2.6.1.tar.gz
8+
md5: 842b44f8c95517ed5b792081a2370da1
9+
# patches:
10+
# List any patch files here
11+
# - fix.patch
12+
13+
# build:
14+
# preserve_egg_dir: True
15+
# entry_points:
16+
# Put any entry points (scripts to be generated automatically) here. The
17+
# syntax is module:function. For example
18+
#
19+
# - psycopg2 = psycopg2:main
20+
#
21+
# Would create an entry point called psycopg2 that calls psycopg2.main()
22+
23+
24+
# If this is a new build for the same version, increment the build
25+
# number. If you do not include this key, it defaults to 0.
26+
# number: 1
27+
28+
requirements:
29+
build:
30+
- python
31+
32+
run:
33+
- python
34+
35+
test:
36+
# Python imports
37+
imports:
38+
- psycopg2
39+
- psycopg2.tests
40+
41+
# commands:
42+
# You can put test commands to be run here. Use this to test that the
43+
# entry points work.
44+
45+
46+
# You can also put a file called run_test.py in the recipe that will be run
47+
# at test time.
48+
49+
# requires:
50+
# Put any additional test requirements here. For example
51+
# - nose
52+
53+
about:
54+
home: http://initd.org/psycopg/
55+
license: GNU Library or Lesser General Public License (LGPL) or Zope Public License
56+
summary: 'psycopg2 - Python-PostgreSQL Database Adapter'
57+
58+
# See
59+
# http://docs.continuum.io/conda/build.html for
60+
# more information about meta.yaml

0 commit comments

Comments
 (0)