From 373f6b2f12cee7169c4e6840e97fcc02de8c88be Mon Sep 17 00:00:00 2001 From: Alvant Date: Sun, 28 Jul 2024 18:47:22 +0300 Subject: [PATCH] add readme as long description in setup --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.py b/setup.py index 9a9867b..70d8fce 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,8 @@ from distutils.core import setup +_README_CONTENT = open('README.md').read() + setup( name='topicnet', packages=[ @@ -15,6 +17,8 @@ version='0.9.0', license='MIT', description='TopicNet is a module for topic modelling using ARTM algorithm', + long_description=_README_CONTENT, + long_description_content_type='text/markdown', author='Machine Intelligence Laboratory', author_email='alex.goncharov@phystech.edu', url='https://github.com/machine-intelligence-laboratory/TopicNet',