File: control

package info (click to toggle)
python-datacache 1.4.1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 284 kB
  • sloc: python: 935; sh: 14; makefile: 4
file content (36 lines) | stat: -rw-r--r-- 1,516 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
Source: python-datacache
Section: python
Priority: optional
Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.org>
Uploaders: Steffen Moeller <moeller@debian.org>
Build-Depends: debhelper-compat (= 13),
               dh-sequence-python3,
               python3-setuptools,
               python3-all,
               python3-requests,
               python3-pandas,
               python3-platformdirs,
               python3-biopython <!nocheck>,
               python3-typechecks <!nocheck>
Standards-Version: 4.6.2
Homepage: https://github.com/openvax/datacache
Vcs-Browser: https://salsa.debian.org/med-team/python-datacache
Vcs-Git: https://salsa.debian.org/med-team/python-datacache.git
Testsuite: autopkgtest-pkg-python
Rules-Requires-Root: no

Package: python3-datacache
Architecture: all
Depends: ${python3:Depends}, ${misc:Depends}
Description: helpers for transparently downloading datasets
 External data is often distributed as "flat files", i.e.
 dumps into a mostly human-readable format that one could
 open as a spreadsheet and equally easy parse and index or
 reimport into a local database. When the text file changes,
 the database needs to be updated, too. If access to the database
 is first required, the text file needs to be downloaded first
 and the database created. Remote updates also require local updates.
 .
 This package provides a set of helper functions to address the
 handling of remote files and the curation of local databases
 derived from them.