Skip to content

Commit f77fc24

Browse files
committed
Fix setup.py to include sfs.mono subpackage
1 parent 7c2021a commit f77fc24

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
@@ -1,5 +1,5 @@
11
import sys
2-
from setuptools import setup
2+
from setuptools import setup, find_packages
33
from setuptools.command.test import test as TestCommand
44

55

@@ -28,7 +28,7 @@ def run_tests(self):
2828
setup(
2929
name="sfs",
3030
version=__version__,
31-
packages=['sfs'],
31+
packages=find_packages(),
3232
install_requires=[
3333
'numpy',
3434
'scipy',

0 commit comments

Comments
 (0)