Skip to content

Commit

Permalink
✏️ refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
HamedBabaei committed Dec 5, 2024
1 parent d07ca31 commit 0753239
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 10 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
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 = "*"
Expand Down
28 changes: 20 additions & 8 deletions setup.py
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",
},
)

0 comments on commit 0753239

Please sign in to comment.