-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
1 changed file
with
10 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
from pathlib import Path | ||
|
||
from setuptools import ( | ||
setup, | ||
find_packages, | ||
|
@@ -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]', | ||
|