-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 806 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 806 Bytes
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
#!/usr/bin/env python
from setuptools import setup
setup(name="modeldiff",
version="1.0.1",
description="ModelDiff: A Framework for Comparing Learning Algorithms",
long_description="Check out our repo (https://github.com/MadryLab/modeldiff) and our paper (https://arxiv.org/abs/2211.12491).",
author="MadryLab",
author_email='harshay@mit.edu',
license_files=('LICENSE.txt', ),
packages=['modeldiff'],
install_requires=[
"traker",
"numpy"
],
extras_require={
'notebooks':
["scikit_learn",
"torchvision",
"seaborn",
"wget",
"scipy",
"wilds",
"pandas"
], },
include_package_data=True,
)