Skip to content

Commit 7a5686c

Browse files
committed
fix: add submodules for pypi (#70)
1 parent 50218fb commit 7a5686c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

nano_graphrag/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from .graphrag import GraphRAG, QueryParam
22

3-
__version__ = "0.0.8"
3+
__version__ = "0.0.8.2"
44
__author__ = "Jianbai Ye"
55
__url__ = "https://github.com/gusye1234/nano-graphrag"
66

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import setuptools
2+
from setuptools import find_packages
23

34
with open("readme.md", "r") as fh:
45
long_description = fh.read()
@@ -28,7 +29,7 @@
2829
description="A simple, easy-to-hack GraphRAG implementation",
2930
long_description=long_description,
3031
long_description_content_type="text/markdown",
31-
packages=["nano_graphrag"],
32+
packages=find_packages(),
3233
classifiers=[
3334
"Programming Language :: Python :: 3",
3435
"License :: OSI Approved :: MIT License",

0 commit comments

Comments
 (0)