Skip to content

Commit

Permalink
upgrade to version 0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
vemonet committed Feb 14, 2022
1 parent 7f1c9d1 commit 639bb99
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion rdflib_endpoint/sparql_endpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'))


Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.',
Expand All @@ -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',
Expand Down

0 comments on commit 639bb99

Please sign in to comment.