diff --git a/owlapy/owl_reasoner.py b/owlapy/owl_reasoner.py index 21cea2f..f909e15 100644 --- a/owlapy/owl_reasoner.py +++ b/owlapy/owl_reasoner.py @@ -9,8 +9,6 @@ from types import MappingProxyType, FunctionType from typing import DefaultDict, Iterable, Dict, Mapping, Set, Type, TypeVar, Optional, FrozenSet, List, Union -from jpype import javax - from owlapy.class_expression import OWLClassExpression, OWLObjectSomeValuesFrom, OWLObjectUnionOf, \ OWLObjectIntersectionOf, OWLObjectComplementOf, OWLObjectAllValuesFrom, OWLObjectOneOf, OWLObjectHasValue, \ OWLObjectMinCardinality, OWLObjectMaxCardinality, OWLObjectExactCardinality, OWLObjectCardinalityRestriction, \ diff --git a/setup.py b/setup.py index b04bd1b..4bcd025 100644 --- a/setup.py +++ b/setup.py @@ -8,9 +8,7 @@ version="1.3.0", packages=find_packages(), include_package_data=True, - package_data={ - 'owlapy': ['jar_dependencies/*.jar'], - }, + package_data={'owlapy': ['jar_dependencies/*.jar'],}, install_requires=[ "pandas>=1.5.0", "requests>=2.32.3",