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' )