From 2bd3f98768ba2f2b23b8d1d0e66c52c1f6a0d539 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Magalh=C3=A3es?= Date: Sat, 5 Feb 2022 17:46:02 +0000 Subject: [PATCH] feat: moved long description down --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 654a7e1..d123634 100644 --- a/setup.py +++ b/setup.py @@ -10,8 +10,6 @@ author = "Platforme International", author_email = "development@platforme.com", description = "RIPE API", - long_description = open(os.path.join(os.path.dirname(__file__), "README.md"), "r").read(), - long_description_content_type = "text/markdown", license = "Apache License, Version 2.0", keywords = "ripe api", url = "http://www.platforme.com", @@ -41,5 +39,7 @@ "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" - ] + ], + long_description = open(os.path.join(os.path.dirname(__file__), "README.md"), "r").read(), + long_description_content_type = "text/markdown" )