Skip to content

Commit

Permalink
Fix ModuleNotFoundError of line_profiler (#13)
Browse files Browse the repository at this point in the history
In 0.2.0, line_profiler.py becomes sub directory, but not listed in `packages`.
  • Loading branch information
c01o committed Jun 18, 2020
1 parent ff71e73 commit 1e87741
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,4 +1,4 @@
from setuptools import setup
from setuptools import setup, find_packages

try:
long_description = open('README.md').read()
Expand Down Expand Up @@ -33,5 +33,5 @@
'ipython': ['IPython>=0.13'],
'test': ['pytest'],
},
packages=['pytorch_memlab'],
packages=find_packages(),
)

0 comments on commit 1e87741

Please sign in to comment.