From 6071a7a32a08f99739d603a9bebb278157ebe359 Mon Sep 17 00:00:00 2001 From: Olcay Taner YILDIZ Date: Sat, 30 Oct 2021 20:03:29 +0300 Subject: [PATCH] Updated setup.py. --- setup.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index ed578ae..1670b35 100644 --- a/setup.py +++ b/setup.py @@ -1,13 +1,19 @@ from setuptools import setup +from pathlib import Path +this_directory = Path(__file__).parent +long_description = (this_directory / "README.md").read_text() + setup( name='NlpToolkit-AnnotatedSentence', - version='1.0.34', + version='1.0.35', packages=['AnnotatedSentence'], url='https://github.com/olcaytaner/AnnotatedSentence-Py', license='', author='olcaytaner', author_email='olcaytaner@isikun.edu.tr', description='Annotated Sentence Processing Library', - install_requires=['NlpToolkit-WordNet', 'NlpToolkit-NamedEntityRecognition', 'NlpToolkit-PropBank', 'NlpToolkit-DependencyParser', 'NlpToolkit-FrameNet', 'NlpToolkit-SentiNet'] + install_requires=['NlpToolkit-WordNet', 'NlpToolkit-NamedEntityRecognition', 'NlpToolkit-PropBank', 'NlpToolkit-DependencyParser', 'NlpToolkit-FrameNet', 'NlpToolkit-SentiNet'], + long_description=long_description, + long_description_content_type='text/markdown' )