-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
46 lines (44 loc) · 1.38 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env python
from distutils.core import setup
from setuptools import find_packages
setup(name='tableshift',
version='0.1',
url='https://tableshift.org',
description='A tabular data benchmarking toolkit.',
long_description='A benchmarking toolkit for tabular data under distirbution shift. '
'For more details, see the paper '
'"Benchmarking Distribution Shift in Tabular Data with TableShift", '
'Gardner, Popovic, and Schmidt, 2023.',
author='Josh Gardner',
author_email='jpgard@cs.washington.edu',
packages=find_packages(),
include_package_data=True,
data_files=[('tableshift/datasets',
['tableshift/datasets/nhanes_data_sources.json',
'tableshift/datasets/icd9-codes.json'])],
install_requires=[
'numpy==1.23.5',
'ray==2.2',
'torch',
'torchvision',
'scikit-learn',
'pandas',
'fairlearn',
'folktables',
'frozendict',
'rtdl',
'xport',
'tqdm',
'hyperopt',
'h5py',
'tables',
'category_encoders',
'einops',
'tab-transformer-pytorch',
'openpyxl',
'optuna',
'kaggle',
'datasets',
'torchinfo'
]
)