Fix bugs in setup.py

This commit is contained in:
Cyber MacGeddon 2024-07-15 21:48:51 +01:00
parent 178bd6943e
commit b63ffbd95e
2 changed files with 10 additions and 5 deletions

View file

@ -5,7 +5,12 @@ import sys
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 == "":
query="""This knowledge graph describes the Space Shuttle disaster.

View file

@ -4,17 +4,17 @@ import os
with open("README.md", "r") as fh:
long_description = fh.read()
version = "0.2.1"
version = "0.2.2"
setuptools.setup(
name="trustgraph",
version=version,
author="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_content_type="text/markdown",
url="https://github.com/trustgraph.ai/FIXME.git",
url="https://github.com/trustgraph-ai/trustgraph",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
@ -22,7 +22,7 @@ setuptools.setup(
"Operating System :: OS Independent",
],
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=[
"torch",
"urllib3",