-
Notifications
You must be signed in to change notification settings - Fork 852
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from IBM/full_links_readme
Update the Pypi description and the version number in readme.
- Loading branch information
Showing
2 changed files
with
8 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
from setuptools import setup, find_packages | ||
|
||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
long_description = """The AI Fairness 360 toolkit is an open-source library to help detect and remove bias in machine | ||
learning models. The AI Fairness 360 Python package includes a comprehensive set of metrics for datasets and models to | ||
test for biases, explanations for these metrics, and algorithms to mitigate bias in datasets and models. | ||
We have developed the package with extensibility in mind. This library is still in development. We encourage the | ||
contribution of your datasets, metrics, explainers, and debiasing algorithms.""" | ||
|
||
setup(name='aif360', | ||
version='0.1.0', | ||
version='0.1.1', | ||
description='IBM AI Fairness 360', | ||
author='aif360 developers', | ||
author_email='[email protected]', | ||
|