Skip to content

Commit

Permalink
auto find packages with setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
J535D165 committed Jan 4, 2018
1 parent e5cf451 commit 18b9634
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os

from setuptools import setup
from setuptools import setup, find_packages
import versioneer


Expand Down Expand Up @@ -32,12 +32,7 @@ def read(fname):
"scipy>=0.17.1",
"scikit-learn>=0.17.1",
],
packages=[
'recordlinkage',
'recordlinkage.datasets',
'recordlinkage.standardise',
'recordlinkage.algorithms'
],
packages=find_packages(exclude=["recordlinkage._lib"]),
include_package_data=True,
package_dir={'recordlinkage': 'recordlinkage'},
package_data={'recordlinkage': ['datasets/*/*.csv']},
Expand Down

0 comments on commit 18b9634

Please sign in to comment.