From 605d5c267202e9a299b1eb09d639ee9c812cd0fc Mon Sep 17 00:00:00 2001 From: Adib Grouz Date: Sat, 14 Sep 2024 13:57:03 +0200 Subject: [PATCH] update setup adding readme --- setup.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/setup.py b/setup.py index 105cc94..669411f 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,13 @@ from __future__ import annotations +import pathlib + from setuptools import find_packages from setuptools import setup +HERE = pathlib.Path(__file__).parent +README = (HERE / 'README.md').read_text() + setup( name='nox-cli', use_scm_version=True, @@ -13,6 +18,8 @@ url='https://github.com/Adi3g/nox-cli', packages=find_packages(), include_package_data=True, + long_description=README, + long_description_content_type='text/markdown', install_requires=[ 'click', 'PyJWT',