-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a88b7fb
commit 70a0344
Showing
2 changed files
with
4 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,11 +5,9 @@ authors = [{ name = "Pythia Dev Team", email = "[email protected]" }] | |
description = "SurrealDB Query Interface" | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
dependencies = [ | ||
"python-dotenv", | ||
"surrealdb @ git+https://github.com/M1N0RM1N3R/surrealdb.py.git", | ||
] | ||
dependencies = ["python-dotenv", "surrealdb"] | ||
license = { file = "LICENSE" } | ||
|
||
[project.urls] | ||
Source = "https://github.com/PythiaSocialTech/sirqle" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import importlib.metadata | ||
|
||
__version__ = importlib.metadata.version(__package__ or __name__) | ||
from src.sirqle.config import Config | ||
from src.sirqle.query import Query | ||
from .config import Config | ||
from .query import Query |