From 362054125da5d9960f2dddf82ca7847b99de81df Mon Sep 17 00:00:00 2001 From: Pitossomo Date: Sat, 29 Oct 2022 10:12:47 -0300 Subject: [PATCH] Update setup.py Added a comma at end of line 17 to prevent errors and warnings --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 4b4dc95..0360727 100644 --- a/setup.py +++ b/setup.py @@ -14,8 +14,8 @@ description="My short description", long_description=page_description, long_description_content_type="text/markdown", - url="my_github_repository_project_link" + url="my_github_repository_project_link", packages=find_packages(), install_requires=requirements, python_requires='>=3.8', -) \ No newline at end of file +)