Skip to content
Snippets Groups Projects
Commit 132df85b authored by Aurélien Lamercerie's avatar Aurélien Lamercerie
Browse files

Redesigning TENET as a library (4)

parent e7bd989b
Branches
Tags
No related merge requests found
...@@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. ...@@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file.
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
-------------------------------------------------------------------------------
## [0.5.0] - 2023-01-24 EGC 2023 Demo
### Added
- Polarity phenomena support
### Changed
- Redesigning TENET as a library
- Extraction Rule Optimizations
- Adjustments in AMR scheme
- Update tracking and logging
### Fix
- Fix some regressions
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
## [0.2.0] - 2021-10-19 DGA Demo 1 ## [0.2.0] - 2021-10-19 DGA Demo 1
......
TENET is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
This diff is collapsed.
setup.py 0 → 100644
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'Readme.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name="tenet",
url="https://gitlab.tetras-libre.fr/tetras-mars/tenet",
version="0.5.0",
license="Gpl v3+",
author="Tetras Libre",
author_email="Contact@Tetras-Libre.fr",
description="Tool for Extraction using Net Extension by (semantic) Transduction",
long_description=long_description,
packages=find_packages(exclude=('tests', 'docs'))
install_requires=["rdflib>=6.2.0",
"sparqlwrapper>=2.0.0",
"lxml>=4.8.0"]
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment