Skip to content

Commit

Permalink
#296 related, support long descriptions. Updates short description. #488
Browse files Browse the repository at this point in the history
 related
  • Loading branch information
nicolay-r committed Nov 7, 2023
1 parent 979a715 commit 8aed3f8
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from pathlib import Path

from setuptools import (
setup,
find_packages,
Expand All @@ -12,11 +14,17 @@ def get_requirements(filenames):
r_total.extend(r_local)
return r_total


this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()

setup(
name='arekit',
version='0.24.0',
description='Library devoted to Document level Attitude and Relation Extraction '
'for text objects with entity-linking (EL) API support',
description='Document level Attitude and Relation Extraction toolkit (AREkit)'
' for sampling and prompting mass-media news into datasets for ML-model training',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/nicolay-r/AREkit',
author='Nicolay Rusnachenko',
author_email='[email protected]',
Expand Down

0 comments on commit 8aed3f8

Please sign in to comment.