File: setup.py

package info (click to toggle)
python-pkginfo 1.12.1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 980 kB
  • sloc: python: 2,142; makefile: 84; sh: 14
file content (24 lines) | stat: -rw-r--r-- 575 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
from setuptools import setup

NAME = "testlp1974172"
DESCRIPTION = f"""\
Package: {NAME}
==============================

This distribution exists to allow testing wheels with the description
in the "body" of the metadata, rather than in a header.

We make it long enough here, and with enough embedded markup, to try to
trigger that feature during wheel build.

See also:

- https://bugs.launchpad.net/pkginfo/+bug/1885458
- https://peps.python.org/pep-0566/#description
"""

setup(
    name=NAME,
    description="Reproduce LP #1885458",
    long_description=DESCRIPTION,
)