Skip to content

Commit

Permalink
use find_packages()
Browse files Browse the repository at this point in the history
  • Loading branch information
jpgard committed Jan 9, 2024
1 parent 17ce1cd commit d896a77
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env python

from distutils.core import setup
from setuptools import find_packages

setup(name='tableshift',
version='0.1',
Expand All @@ -12,7 +13,7 @@
'Gardner, Popovic, and Schmidt, 2023.',
author='Josh Gardner',
author_email='jpgard@cs.washington.edu',
packages=['tableshift'],
packages=find_packages(),
data_files=[('tableshift/datasets',
['tableshift/datasets/nhanes_data_sources.json',
'tableshift/datasets/icd9-codes.json'])],
Expand Down

0 comments on commit d896a77

Please sign in to comment.