-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d07ca31
commit 0753239
Showing
2 changed files
with
22 additions
and
10 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,15 +1,15 @@ | ||
[tool.poetry] | ||
name = "OntoAligner" | ||
version = "1.0.0" | ||
description = "OntoAligner is a user-friendly Python library designed to simplify the process of ontology alignment/matching." | ||
description = "OntoAligner: A Comprehensive Modular and Robust Python Toolkit for Ontology Alignment." | ||
authors = ["Hamed Babaei Giglou <[email protected]>"] | ||
license = "MIT" | ||
readme = "README.md" | ||
homepage = "https://ontoaligner.readthedocs.io/" | ||
repository = "https://github.com/sciknoworg/OntoAligner/" | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.9" | ||
python = ">=3.10" | ||
pathlib = "*" | ||
argparse = "*" | ||
numpy = "*" | ||
|
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,38 +1,50 @@ | ||
from setuptools import setup, find_packages | ||
|
||
with open("README.md", encoding="utf-8") as f: | ||
long_description = f.read() | ||
|
||
setup( | ||
name="OntoAligner", | ||
version="0.1.1", | ||
version="1.0.0", | ||
author="Hamed Babaei Giglou", | ||
author_email="[email protected]", | ||
description="OntoAligner: A Ontology Alignment Python Library", | ||
long_description=open('README.md').read(), | ||
description="OntoAligner: A Comprehensive Modular and Robust Python Toolkit for Ontology Alignment", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/HamedBabaei/OntoAligner", | ||
url="https://github.com/sciknoworg/OntoAligner", | ||
packages=find_packages(), | ||
install_requires=[ | ||
"pathlib", | ||
"argparse", | ||
"datasets", | ||
"numpy", | ||
"pandas", | ||
"scikit_learn", | ||
"scikit-learn", | ||
"ontospy==2.1.1", | ||
"openai==1.56.0", | ||
"owlready2==0.44", | ||
"rank_bm25==0.2.2", | ||
"rapidfuzz==3.5.2", | ||
"rdflib==7.1.1", | ||
"sentence_transformers==2.2.2", | ||
"sentence-transformers==2.2.2", | ||
"setfit==1.0.3", | ||
"torch==2.5.0", | ||
"tqdm==4.66.3", | ||
"transformers==4.46.0" | ||
], | ||
classifiers=[ # Optional metadata | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.10", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
], | ||
python_requires='>=3.9', | ||
python_requires=">=3.10", | ||
project_urls={ | ||
"Documentation": "https://ontoaligner.readthedocs.io/", | ||
"Source": "https://github.com/sciknoworg/OntoAligner", | ||
"Tracker": "https://github.com/sciknoworg/OntoAligner/issues", | ||
}, | ||
) |