ai-privacy-toolkit/setup.cfg
andersonm-ibm e9a225501f
Limit scikit-learn version because of API changes (#81)
* Limit scikit-learn versions between 0.22.2 and 1.1.3, remove deprecated load_boston().

* Set pytest configuration option to show test progress in detail.

* Change np.int to int according to DeprecationWarning

Signed-off-by: Maya Anderson <mayaa@il.ibm.com>
2023-05-14 08:52:06 +03:00

36 lines
866 B
INI

[metadata]
# replace with your username:
name = ai-privacy-toolkit
version = 0.2.0
author = Abigail Goldsteen
author_email = abigailt@il.ibm.com
description = A toolkit for tools and techniques related to the privacy and compliance of AI models.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/IBM/ai-privacy-toolkit
project_urls =
Documentation = https://ai-privacy-toolkit.readthedocs.io/en/latest/
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
packages = find:
python_requires = >=3.6
[options.packages.find]
exclude =
tests
[flake8]
ignore = C901,W503
per-file-ignores = __init__.py:F401
builtins = keras,xgboost
exclude =
venv
venv1
[tool:pytest]
log_cli = True
log-cli-level = INFO