Skip to content

Commit

Permalink
fix broken package #170
Browse files Browse the repository at this point in the history
  • Loading branch information
ekzhu committed Dec 27, 2021
1 parent 082b7f6 commit d6d3a3a
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
Expand Up @@ -3,7 +3,7 @@
"""

# Always prefer setuptools over distutils
from setuptools import setup
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
Expand Down Expand Up @@ -47,7 +47,7 @@
'Programming Language :: Python :: 3.8',
],
keywords='database datamining',
packages=['datasketch'],
packages=find_packages(include=['datasketch*']),
install_requires=[
'numpy>=1.11',
'scipy>=1.0.0',
Expand Down

0 comments on commit d6d3a3a

Please sign in to comment.