Skip to content

Commit

Permalink
Updated setup.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
Olcay Taner YILDIZ committed Oct 30, 2021
1 parent 4ab38ac commit 6071a7a
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions 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'
)

0 comments on commit 6071a7a

Please sign in to comment.