diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-29 04:26:28 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-29 04:26:28 +0000 |
commit | 5c790d583db9dfc596ae940133483e4e62165b1c (patch) | |
tree | a3218a0874d66700ee344a4837672b9de4e9c176 /debian/control | |
parent | Adding upstream version 3.8.0. (diff) | |
download | flit-5c790d583db9dfc596ae940133483e4e62165b1c.tar.xz flit-5c790d583db9dfc596ae940133483e4e62165b1c.zip |
Adding debian version 3.8.0-3.debian/3.8.0-3debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | debian/control | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..07ec7a7 --- /dev/null +++ b/debian/control @@ -0,0 +1,42 @@ +Source: flit +Section: python +Priority: optional +Maintainer: Debian Python Team <team+python@tracker.debian.org> +Uploaders: Scott Kitterman <scott@kitterman.com> +Build-Depends: debhelper-compat (= 13), + dh-sequence-python3, + pybuild-plugin-pyproject, + python3-all, +Build-Depends-Indep: + python3-tomli, + python3-tomli-w, + python3-sphinx, + python3-pytest, + python3-requests, + python3-responses, + python3-testpath, +Standards-Version: 4.6.2 +Homepage: https://flit.readthedocs.io/en/latest/ +Rules-Requires-Root: no +Vcs-Git: https://salsa.debian.org/python-team/packages/flit.git +Vcs-Browser: https://salsa.debian.org/python-team/packages/flit + +Package: flit +Architecture: all +Depends: ${misc:Depends}, + python3-tomli, + ${python3:Depends}, +Description: simple way to put Python packages and modules on PyPI (PEP 517) + Flit is a easy way to put Python packages and modules on PyPI. It tries to + require less thought about packaging and help you avoid common mistakes. + . + Flit supports PEP 517 Python packaging and PEP 621 project metadata. + . + Make the easy things easy and the hard things possible is an old motto from + the Perl community. Flit is entirely focused on the easy things part of that, + and leaves the hard things up to other tools. + . + Specifically, the easy things are pure Python packages with no build steps + (neither compiling C code, nor bundling Javascript, etc.). The vast majority + of packages on PyPI are like this: plain Python code, with maybe some static + data files like icons included. |