Skip to content

Commit

Permalink
fix: include subpackages in the top class archivebox package
Browse files Browse the repository at this point in the history
  • Loading branch information
srevinsaju committed May 7, 2021
1 parent 4223801 commit 9b3585b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
@@ -1,6 +1,7 @@
import json
import setuptools
from setuptools.command.test import test
from setuptools import find_packages

from pathlib import Path

Expand Down Expand Up @@ -99,7 +100,7 @@ def run(self):
setup_requires=SETUP_REQUIRES,
install_requires=INSTALL_REQUIRES,
extras_require=EXTRAS_REQUIRE,
packages=[PKG_NAME],
packages=[PKG_NAME] + find_packages(),
include_package_data=True, # see MANIFEST.in
entry_points={
"console_scripts": [
Expand Down

0 comments on commit 9b3585b

Please sign in to comment.