forked from openkylin/flit
39 lines
1.5 KiB
Plaintext
39 lines
1.5 KiB
Plaintext
Source: flit
|
|
Section: python
|
|
Priority: optional
|
|
Maintainer: Openkylin Developers <packaging@lists.openkylin.top>
|
|
Build-Depends: debhelper-compat (= 13),
|
|
dh-sequence-python3,
|
|
pybuild-plugin-pyproject,
|
|
python3-all,
|
|
Build-Depends-Indep:
|
|
python3-sphinx,
|
|
python3-pytest,
|
|
python3-requests,
|
|
python3-responses,
|
|
python3-testpath,
|
|
Standards-Version: 4.6.1
|
|
Homepage: https://flit.readthedocs.io/en/latest/
|
|
Rules-Requires-Root: no
|
|
Vcs-Git: https://gitee.com/openkylin/flit.git
|
|
Vcs-Browser: https://gitee.com/openkylin/flit
|
|
|
|
Package: flit
|
|
Architecture: all
|
|
Depends: ${misc:Depends},
|
|
${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.
|