Skip to content

Commit dbfc6c9

Browse files
committed
FIX(BUILD): SphinxExt package were MISSING
1 parent 2c37883 commit dbfc6c9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import io
55
import os
66
import re
7-
from setuptools import setup
7+
from setuptools import setup, find_packages
88

99

1010
with open("README.rst") as f:
@@ -50,7 +50,7 @@
5050
"Sources": "https://github.com/pygraphkit/graphtik",
5151
"Bug Tracker": "https://github.com/pygraphkit/graphtik/issues",
5252
},
53-
packages=["graphtik"],
53+
packages=find_packages(exclude=["test"]),
5454
python_requires=">=3.6",
5555
install_requires=[
5656
"contextvars; python_version < '3.7'",

0 commit comments

Comments
 (0)