mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-28 09:56:22 +02:00
Fix bugs in setup.py
This commit is contained in:
parent
178bd6943e
commit
b63ffbd95e
2 changed files with 10 additions and 5 deletions
|
|
@ -5,7 +5,12 @@ import sys
|
||||||
|
|
||||||
query = " ".join(sys.argv[1:])
|
query = " ".join(sys.argv[1:])
|
||||||
|
|
||||||
gr = GraphRag(verbose=True)
|
gr = GraphRag(
|
||||||
|
verbose=True,
|
||||||
|
vector_store="http://localhost:19530",
|
||||||
|
pulsar_host="pulsar://localhost:6650",
|
||||||
|
graph_hosts=["localhost"],
|
||||||
|
)
|
||||||
|
|
||||||
if query == "":
|
if query == "":
|
||||||
query="""This knowledge graph describes the Space Shuttle disaster.
|
query="""This knowledge graph describes the Space Shuttle disaster.
|
||||||
|
|
|
||||||
8
setup.py
8
setup.py
|
|
@ -4,17 +4,17 @@ import os
|
||||||
with open("README.md", "r") as fh:
|
with open("README.md", "r") as fh:
|
||||||
long_description = fh.read()
|
long_description = fh.read()
|
||||||
|
|
||||||
version = "0.2.1"
|
version = "0.2.2"
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="trustgraph",
|
name="trustgraph",
|
||||||
version=version,
|
version=version,
|
||||||
author="trustgraph.ai",
|
author="trustgraph.ai",
|
||||||
author_email="security@trustgraph.ai",
|
author_email="security@trustgraph.ai",
|
||||||
description="trustgraph.ai",
|
description="TrustGraph provides a means to run a pipeline of flexible AI processing components in a flexible means to achieve a processing pipeline.",
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type="text/markdown",
|
||||||
url="https://github.com/trustgraph.ai/FIXME.git",
|
url="https://github.com/trustgraph-ai/trustgraph",
|
||||||
packages=setuptools.find_packages(),
|
packages=setuptools.find_packages(),
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
|
|
@ -22,7 +22,7 @@ setuptools.setup(
|
||||||
"Operating System :: OS Independent",
|
"Operating System :: OS Independent",
|
||||||
],
|
],
|
||||||
python_requires='>=3.8',
|
python_requires='>=3.8',
|
||||||
download_url = "https://github.com/trustgraph.ai/FIXME.git/archive/refs/tags/v" + version + ".tar.gz",
|
download_url = "https://github.com/trustgraph-ai/trustgraph/archive/refs/tags/v" + version + ".tar.gz",
|
||||||
install_requires=[
|
install_requires=[
|
||||||
"torch",
|
"torch",
|
||||||
"urllib3",
|
"urllib3",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue