From b02304ca4c14deb6b41cf7ea9f8a7aabb97a7b62 Mon Sep 17 00:00:00 2001 From: Gui Martins Date: Thu, 5 Jan 2023 11:54:53 -0500 Subject: [PATCH] now with better readme --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.py b/setup.py index 4385660..e313b6b 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,8 @@ from setuptools import setup, find_packages +with open("./README.md", 'r') as fr: + readme_file = fr.read() + setup( name='fancy-jira', version='0.1.0', @@ -20,4 +23,5 @@ [console_scripts] jira=jiractl:jira ''', + long_description=readme_file )