Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolve packaging issues #203

Merged
merged 6 commits into from
Mar 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 1 addition & 14 deletions SPARQLWrapper/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,9 @@
__version__ = "1.9.0.dev0"
"""The version of SPARQLWrapper"""

__authors__ = "Ivan Herman, Sergio Fernández, Carlos Tejo Alonso, Alexey Zakhlestin"
"""The primary authors of SPARQLWrapper"""
__agent__: str = f"sparqlwrapper {__version__} (rdflib.github.io/sparqlwrapper)"

__license__ = "W3C® SOFTWARE NOTICE AND LICENSE, http://www.w3.org/Consortium/Legal/copyright-software"
"""The license governing the use and distribution of SPARQLWrapper"""

__url__ = "http://rdflib.github.io/sparqlwrapper"
"""The URL for SPARQLWrapper's homepage"""

__contact__ = "rdflib-dev@googlegroups.com"
"""Mail list to contact to other people RDFLib and SPARQLWrappers folks and developers"""

__date__ = "2019-04-18"
"""Last update"""

__agent__: str = "sparqlwrapper %s (rdflib.github.io/sparqlwrapper)" % __version__
from .SmartWrapper import SPARQLWrapper2
from .sparql_dataframe import get_sparql_dataframe
from .Wrapper import (
Expand Down
Empty file added SPARQLWrapper/py.typed
Empty file.
12 changes: 7 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[metadata]
name = SPARQLWrapper
version = attr: SPARQLWrapper.__init__.__version__
version = attr: SPARQLWrapper.__version__
description = SPARQL Endpoint interface to Python
long_description = This is a wrapper around a SPARQL service. It helps in creating the query URI and, possibly, convert the result into a more manageable format.
license = W3C SOFTWARE NOTICE AND LICENSE
author = attr: SPARQLWrapper.__init__.__authors__
author_email = attr: SPARQLWrapper.__init__.__contact__
url = attr: SPARQLWrapper.__init__.__url__
author = Ivan Herman, Sergio Fernández, Carlos Tejo Alonso, Alexey Zakhlestin
author_email = rdflib-dev@googlegroups.com
url = http://rdflib.github.io/sparqlwrapper
download_url = https://github.com/RDFLib/sparqlwrapper/releases
platforms =
any
Expand Down Expand Up @@ -35,11 +35,13 @@ project_urls =
[options]
packages =
SPARQLWrapper
include_package_data = True
install_requires =
rdflib>=6.1.1
python_requires = >= 3.7
eggplants marked this conversation as resolved.
Show resolved Hide resolved

[options.package_data]
SPARQLWrapper = py.typed

[options.extras_require]
dev =
setuptools>=3.7.1
Expand Down