~ubuntu-branches/debian/jessie/sqlalchemy/jessie

« back to all changes in this revision

Viewing changes to setup.cfg

  • Committer: Package Import Robot
  • Author(s): Piotr Ożarowski, Jakub Wilk, Piotr Ożarowski
  • Date: 2013-07-06 20:53:52 UTC
  • mfrom: (1.4.23) (16.1.17 experimental)
  • Revision ID: package-import@ubuntu.com-20130706205352-ryppl1eto3illd79
Tags: 0.8.2-1
[ Jakub Wilk ]
* Use canonical URIs for Vcs-* fields.

[ Piotr Ożarowski ]
* New upstream release
* Upload to unstable
* Build depend on python3-all instead of -dev, extensions are not built for
  Python 3.X 

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
tag_svn_revision = 0
5
5
 
6
6
[nosetests]
7
 
with-_sqlalchemy = true
 
7
with-sqla_testing = true
8
8
exclude = ^examples
9
9
first-package-wins = true
10
10
where = test
11
11
 
 
12
[upload]
 
13
sign = 1
 
14
identity = C4DAFEE1
 
15
 
 
16
[sqla_testing]
 
17
requirement_cls = test.requirements:DefaultRequirements
 
18
profile_file = test/profiles.txt
 
19
oracle_db_link = test_link
 
20
 
 
21
[db]
 
22
default = sqlite:///:memory:
 
23
sqlite = sqlite:///:memory:
 
24
sqlite_file = sqlite:///querytest.db
 
25
postgresql = postgresql://scott:tiger@127.0.0.1:5432/test
 
26
postgres = postgresql://scott:tiger@127.0.0.1:5432/test
 
27
pg8000 = postgresql+pg8000://scott:tiger@127.0.0.1:5432/test
 
28
postgresql_jython = postgresql+zxjdbc://scott:tiger@127.0.0.1:5432/test
 
29
mysql_jython = mysql+zxjdbc://scott:tiger@127.0.0.1:5432/test
 
30
mysql = mysql://scott:tiger@127.0.0.1:3306/test
 
31
pymysql = mysql+pymysql://scott:tiger@127.0.0.1:3306/test?use_unicode=0&charset=utf8
 
32
oracle = oracle://scott:tiger@127.0.0.1:1521
 
33
oracle8 = oracle://scott:tiger@127.0.0.1:1521/?use_ansi=0
 
34
maxdb = maxdb://MONA:RED@/maxdb1
 
35