diff --git a/rdflib_endpoint/sparql_endpoint.py b/rdflib_endpoint/sparql_endpoint.py index 48dc516..22fb8ea 100644 --- a/rdflib_endpoint/sparql_endpoint.py +++ b/rdflib_endpoint/sparql_endpoint.py @@ -246,7 +246,6 @@ async def post_sparql_endpoint( @self.get("/", include_in_schema=False) async def serve_yasgui(): """Serve YASGUI interface""" - print(pkg_resources.resource_filename('rdflib_endpoint', 'yasgui.html')) return FileResponse(pkg_resources.resource_filename('rdflib_endpoint', 'yasgui.html')) diff --git a/setup.py b/setup.py index 7396993..e813c9f 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup, find_packages setup( - version='0.1.5', + version='0.1.6', name='rdflib-endpoint', license='MIT License', description='A SPARQL endpoint to serve local RDF files, machine learning models, or any other logic implemented in Python, using RDFLib and FastAPI.', @@ -15,7 +15,7 @@ # package_dir={'rdflib_endpoint': 'rdflib_endpoint'}, package_data={'': ['tests/resources/*'], 'rdflib_endpoint': ['*.html']}, - # include_package_data=True, + # include_package_data=True, # Do not work, and nullify package_data entry_points={ 'console_scripts': [ 'rdflib-endpoint=rdflib_endpoint.__main__:cli',