Skip to content

Commit

Permalink
chore: add README contents as pypi long_description
Browse files Browse the repository at this point in the history
The `pypi-publish` action runs `twine check` which complains that this
field is missing.
  • Loading branch information
ahal committed Feb 12, 2024
1 parent 30e79fd commit 91010e9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,14 @@
with open(os.path.join(project_dir, "requirements/base.in")) as fp:
requirements = fp.read().splitlines()

with open(os.path.join(project_dir, "README.rst")) as fh:
long_description = fh.read()

setup(
name="taskcluster-taskgraph",
version=namespace["__version__"],
description="Build taskcluster taskgraphs",
long_description=long_description,
url="https://github.com/taskcluster/taskgraph",
packages=find_packages("src"),
package_dir={"": "src"},
Expand Down

0 comments on commit 91010e9

Please sign in to comment.