From bbbdd9eab17b3deb4f1eb1374f0c76905c4dcccd Mon Sep 17 00:00:00 2001 From: Diogo Date: Sun, 2 May 2021 19:04:03 +0800 Subject: [PATCH] Use repo readme.md as pypi description --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2a22da0..8c76432 100644 --- a/setup.py +++ b/setup.py @@ -7,9 +7,12 @@ with open("requirements.txt", "r") as fs: reqs = [r for r in fs.read().splitlines() if (len(r) > 0 and not r.startswith("#"))] +with open("README.md", "r", encoding="utf-8") as fh: + long_description = fh.read() + setup( name="napalm-asa", - version="0.1.2", + version="0.1.3", packages=find_packages(), author="Diogo Assumpcao", author_email="daa@hey.com",