-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
32 lines (28 loc) · 1.02 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "demv"
version = "1.0.2"
description = "Debiaser for Multiple Variables(DEMV) is a pre-processing algorithm for binary and multi-class datasets that mitigates bias by perfectly balancing the sensitive groups identified by each possible sensitive variables' value and each label's value"
readme = "README.md"
authors = [{ name = "Giordano d'Aloisio", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["bias", "fairness", "preprocessing", "classification", "multi class"]
dependencies = [
"pandas",
"numpy",
"scikit-learn",
]
requires-python = ">=3.6.0"
[project.optional-dependencies]
dev = ["pytest"]
[project.urls]
Homepage = "https://github.com/giordanoDaloisio/demv"
[tool.setuptools]
packages = ["demv"]