File: control

package info (click to toggle)
asyncpg 0.8.4-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 3,920 kB
  • sloc: python: 5,469; ansic: 791; makefile: 37
file content (40 lines) | stat: -rw-r--r-- 1,471 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
Source: asyncpg
Section: python
Priority: optional
Maintainer: Piotr Ożarowski <piotr@debian.org>
Uploaders: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Build-Depends: debhelper (>= 9), dh-python,
               cython3 (>= 0.24),
               python3-all-dev,
               python3-setuptools,
# tests:
               python3-pytest,
               postgresql,
               postgresql-contrib,
               libpq-dev
Standards-Version: 3.9.8
Homepage: https://magicstack.github.io/asyncpg
Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/asyncpg.git
Vcs-Browser: https://anonscm.debian.org/git/python-modules/packages/asyncpg.git
X-Python3-Version: >= 3.5

Package: python3-asyncpg
Architecture: any
Depends: ${misc:Depends}, ${python3:Depends}, ${shlibs:Depends},
Recommends: ${python3:Recommends}
Suggests: ${python3:Suggests}
Description: asyncio PosgtreSQL driver
 Database interface library designed specifically for PostgreSQL and
 Python/asyncio.
 asyncpg is an efficient, clean implementation of PostgreSQL server binary
 protocol for use with Python's asyncio framework.
 It implements PostgreSQL server protocol natively and exposes its features
 directly.
 .
 Features:
  * prepared statements,
  * scrollable cursors,
  * partial iteration on query results,
  * automatic encoding and decoding of composite types, arrays, and any
    combination of those,
  * straightforward support for custom data types