-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (53 loc) · 1.54 KB
/
pyproject.toml
File metadata and controls
57 lines (53 loc) · 1.54 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "fair-mango"
dynamic = ["version"]
dependencies = [
"numpy",
"pandas",
"scikit-learn>=1.1.3",
]
requires-python = ">=3.10"
maintainers = [
{name = "Marc Bresson", email = "marc.bresson@datategy.net"},
{name = "Nacer Kroudir", email = "nacer.kroudir@datategy.net"},
]
description = "Explore your AI model's fairness"
readme = "README.md"
keywords = ["fairness", "AI", "ML", "machine learning", "XAI", "explanaible AI"]
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed",
]
[project.urls]
Repository = "https://github.com/datategy/Fair-Mango.git"
Issues = "https://github.com/datategy/Fair-Mango/issues"
Changelog = "https://github.com/datategy/Fair-Mango/blob/main/CHANGELOG.md"
[project.optional-dependencies]
dev = [
"twine",
]
old-pandas = [
"pandas<2.2.0",
"numpy<2.0",
]
new-pandas = [
"pandas>=2.2.0",
"numpy>=2.0",
]
[tool.setuptools.dynamic]
version = {attr = "fair_mango.__version__"}