Fix setup deps (#149)

This commit is contained in:
cybermaggedon 2024-11-11 22:29:03 +00:00 committed by GitHub
parent 7aab42a054
commit f654d72515
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 14 additions and 14 deletions

View file

@ -34,7 +34,7 @@ setuptools.setup(
python_requires='>=3.8',
download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz",
install_requires=[
"trustgraph-base>=0.14,<0.15",
"trustgraph-base>=0.15,<0.16",
"pulsar-client",
"prometheus-client",
"boto3",

View file

@ -34,7 +34,7 @@ setuptools.setup(
python_requires='>=3.8',
download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz",
install_requires=[
"trustgraph-base>=0.14,<0.15",
"trustgraph-base>=0.15,<0.16",
"requests",
"pulsar-client",
"rdflib",

View file

@ -34,8 +34,8 @@ setuptools.setup(
python_requires='>=3.8',
download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz",
install_requires=[
"trustgraph-base>=0.14,<0.15",
"trustgraph-flow>=0.14,<0.15",
"trustgraph-base>=0.15,<0.16",
"trustgraph-flow>=0.15,<0.16",
"torch",
"urllib3",
"transformers",

View file

@ -34,7 +34,7 @@ setuptools.setup(
python_requires='>=3.8',
download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz",
install_requires=[
"trustgraph-base>=0.14,<0.15",
"trustgraph-base>=0.15,<0.16",
"urllib3",
"rdflib",
"pymilvus",

View file

@ -34,7 +34,7 @@ setuptools.setup(
python_requires='>=3.8',
download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz",
install_requires=[
"trustgraph-base>=0.14,<0.15",
"trustgraph-base>=0.15,<0.16",
"pulsar-client",
"prometheus-client",
"pyarrow",

View file

@ -34,7 +34,7 @@ setuptools.setup(
python_requires='>=3.8',
download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz",
install_requires=[
"trustgraph-base>=0.14,<0.15",
"trustgraph-base>=0.15,<0.16",
"pulsar-client",
"google-cloud-aiplatform",
"prometheus-client",

View file

@ -34,13 +34,13 @@ setuptools.setup(
python_requires='>=3.8',
download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz",
install_requires=[
"trustgraph-base>=0.14,<0.15",
"trustgraph-bedrock>=0.14,<0.15",
"trustgraph-cli>=0.14,<0.15",
"trustgraph-embeddings-hf>=0.14,<0.15",
"trustgraph-flow>=0.14,<0.15",
"trustgraph-parquet>=0.14,<0.15",
"trustgraph-vertexai>=0.14,<0.15",
"trustgraph-base>=0.15,<0.16",
"trustgraph-bedrock>=0.15,<0.16",
"trustgraph-cli>=0.15,<0.16",
"trustgraph-embeddings-hf>=0.15,<0.16",
"trustgraph-flow>=0.15,<0.16",
"trustgraph-parquet>=0.15,<0.16",
"trustgraph-vertexai>=0.15,<0.16",
],
scripts=[
]