From 398216ddee41340e86ca3d1406cd23206bf44591 Mon Sep 17 00:00:00 2001 From: Ray Chen Date: Sun, 24 Mar 2024 19:18:48 -0400 Subject: [PATCH] add readme to setup --- setup.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 29c2671..9cb7f9e 100644 --- a/setup.py +++ b/setup.py @@ -18,10 +18,16 @@ """ from setuptools import setup +from pathlib import Path +this_directory = Path(__file__).parent +long_description = (this_directory / "README.md").read_text() + setup(name='yatgl', - version='0.0.1', + version='0.0.2', description='An asynchronous NationStates Telegram API library.', + long_description=long_description, + long_description_content_type='text/markdown', url='https://github.com/NotAName320/yatgl', author='Nota', license='GPLv3',