Skip to content

Commit

Permalink
Fix an error with subpackages
Browse files Browse the repository at this point in the history
  • Loading branch information
Rishit-dagli authored Aug 12, 2021
1 parent e31d26f commit 17a378b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os.path

from setuptools import setup
from setuptools import setup, find_packages


def read(rel_path: str) -> str:
Expand All @@ -27,7 +27,7 @@ def get_version(rel_path: str) -> str:
name="tf-watcher",
version=get_version("tfwatcher/version.py"),
description="Monitor your TensorFlow model training on mobile devices, especially for Google Colab",
packages=["tfwatcher"],
packages=find_packages(),
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
Expand Down

0 comments on commit 17a378b

Please sign in to comment.