diff options
Diffstat (limited to 'debian/control')
-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. |