diff --git a/owlapy/util_owl_static_funcs.py b/owlapy/util_owl_static_funcs.py index 37f314cb..56da7ab9 100644 --- a/owlapy/util_owl_static_funcs.py +++ b/owlapy/util_owl_static_funcs.py @@ -1,8 +1,5 @@ -from owlready2 import owl_named_individual - from .owl_ontology import Ontology from .owl_ontology_manager import OntologyManager -from typing import List from .class_expression import OWLClassExpression, OWLClass from .owl_individual import OWLNamedIndividual from .iri import IRI @@ -10,6 +7,7 @@ from .owl_property import OWLDataProperty from .owl_literal import OWLLiteral import os +from typing import List def save_owl_class_expressions(expressions: OWLClassExpression | List[OWLClassExpression], path: str = 'predictions', diff --git a/setup.py b/setup.py index 7f1d2ccd..0ef0e6db 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ include_package_data=True, package_data={'owlapy': ['jar_dependencies/*.jar'],}, install_requires=[ - "scikit-learn>=1.5.2" + "scikit-learn>=1.5.2", "pandas>=1.5.0", "requests>=2.32.3", "rdflib>=6.0.2",