-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
35 lines (33 loc) · 1.01 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
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="inFairness",
packages=[
"inFairness",
*["inFairness." + p for p in find_packages(where="./inFairness")],
],
package_dir={"": ".",},
install_requires=[
"numpy>=1.21.6",
"pandas>=1.3.5",
"POT>=0.8.0",
"scikit-learn>=0.24.2",
"scipy>=1.5.4",
"torch>=1.13.0"
],
description="inFairness is a Python package to train and audit individually fair PyTorch models",
long_description=long_description,
long_description_content_type="text/markdown",
version="0.2.3",
url="https://github.com/IBM/inFairness",
author="IBM Research",
keywords=[
"individual fairness",
"ai fairness",
"trustworthy ai",
"machine learning",
],
python_requires=">=3.7",
)