Skip to content

Commit

Permalink
chore: rename project to 'rdfproxy'
Browse files Browse the repository at this point in the history
Closes #7
  • Loading branch information
lu-pl committed Jul 25, 2024
1 parent 9587ef9 commit e8a16eb
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ jobs:
- uses: googleapis/release-please-action@v3
with:
release-type: python
package-name: sparql_fastapi
package-name: rdfproxy
bump-minor-pre-major: true
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.poetry]
name = "sparql-fastapi"
name = "rdfproxy"
version = "0.1.0"
description = ""
authors = ["Your Name <[email protected]>"]
Expand Down
1 change: 1 addition & 0 deletions rdfproxy/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from rdfproxy.adapter import SPARQLModelAdapter
4 changes: 2 additions & 2 deletions sparql_fastapi/adapter.py → rdfproxy/adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

from SPARQLWrapper import JSON, QueryResult, SPARQLWrapper
from pydantic import BaseModel
from sparql_fastapi.utils._types import _TModelConstructorCallable
from sparql_fastapi.utils.utils import (
from rdfproxy.utils._types import _TModelConstructorCallable
from rdfproxy.utils.utils import (
get_bindings_from_query_result,
instantiate_model_from_kwargs,
)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Type definitions for sparql_fastapi."""
"""Type definitions for rdfproxy."""

from typing import Annotated, Protocol, TypeVar, runtime_checkable

Expand Down
File renamed without changes.
1 change: 0 additions & 1 deletion sparql_fastapi/__init__.py

This file was deleted.

0 comments on commit e8a16eb

Please sign in to comment.