Skip to content
This repository was archived by the owner on Nov 6, 2025. It is now read-only.

Commit d30d316

Browse files
committed
Fix long_description syntax
1 parent 5cbae31 commit d30d316

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
from setuptools import setup, find_packages
22

3+
with open("README.md", "r") as fh:
4+
long_description = fh.read()
5+
36
setup(
47
name="postnl_api",
58
version="1.2.0",
69
description="Python wrapper for the PostNL API, a way to track packages and letters.",
7-
long_description=open('README.md').read(),
10+
long_description=long_description,
811
long_description_content_type="text/markdown",
912
url="https://github.com/imicknl/python-postnl-api",
1013
author="Mick Vleeshouwer",

0 commit comments

Comments
 (0)