We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50218fb commit 7a5686cCopy full SHA for 7a5686c
nano_graphrag/__init__.py
@@ -1,6 +1,6 @@
1
from .graphrag import GraphRAG, QueryParam
2
3
-__version__ = "0.0.8"
+__version__ = "0.0.8.2"
4
__author__ = "Jianbai Ye"
5
__url__ = "https://github.com/gusye1234/nano-graphrag"
6
setup.py
@@ -1,4 +1,5 @@
import setuptools
+from setuptools import find_packages
with open("readme.md", "r") as fh:
long_description = fh.read()
@@ -28,7 +29,7 @@
28
29
description="A simple, easy-to-hack GraphRAG implementation",
30
long_description=long_description,
31
long_description_content_type="text/markdown",
- packages=["nano_graphrag"],
32
+ packages=find_packages(),
33
classifiers=[
34
"Programming Language :: Python :: 3",
35
"License :: OSI Approved :: MIT License",
0 commit comments