-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
93 lines (86 loc) · 2.08 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
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "canonical_sets"
version = "v0.0.3"
description = "Exposing Algorithmic Bias with Canonical Sets."
license = "MIT"
authors = [
"Integrated Intelligence Lab",
"Andres Algaba <[email protected]>",
"Carmen Mazijn <[email protected]>",
"Vincent Ginis <[email protected]>"
]
maintainers = [
"Andres Algaba <[email protected]>",
"Carmen Mazijn <[email protected]>",
"Vincent Ginis <[email protected]>"
]
readme = "README.rst"
homepage = "https://data.research.vub.be/"
repository = "https://github.com/Integrated-Intelligence-Lab/canonical_sets"
documentation = ""
keywords = [
"fairness",
"bias",
"inverse design",
"generative models",
"interpretability",
"python"]
packages = [
{ include = "canonical_sets" }
]
[tool.poetry.dependencies]
python = ">=3.8, <3.11"
matplotlib = ">=3.5.2"
seaborn = ">=0.12.0"
numpy = ">=1.22"
pandas = ">=1.4.2"
torch = ">=1.11.0"
tensorflow = [
{version = ">=2.9.1, <2.11", markers = "sys_platform != 'darwin'"},
{version = ">=2.9.1, <2.11", markers = "sys_platform == 'darwin' and platform_machine == 'x86_64'"}
]
tensorflow-macos = {version = ">=2.9.1, <2.11", markers = "sys_platform == 'darwin' and platform_machine == 'arm64'"}
scikit-learn = ">=1.1.1"
tqdm = ">=4.64.0"
ctgan = ">=0.7.0"
scipy = ">=1.9.0"
[tool.poetry.dev-dependencies]
jupyter = ">=1.0.0"
pytest = ">=7.1.1"
pytest-cov = ">=3.0.0"
mypy = ">=0.942"
isort = ">=5.10.1"
black = ">=22.3.0"
flake8 = ">=4.0.1"
bandit = ">=1.7.4"
Sphinx = ">=4.5.0"
sphinx-rtd-theme = ">=1.0.0"
sphinx-autodoc-typehints = ">=1.19.2"
nbsphinx = ">=0.8.8"
nbsphinx-link = ">=1.3.0"
[tool.black]
line-length = 79
target-version = ["py39"]
include_trailing_comma = true
extend-exclude = '''
docs
'''
[tool.isort]
py_version=39
line_length = 79
profile = "black"
extend_skip_glob = ["docs/*"]
[tool.mypy]
python_version = "3.9"
ignore_missing_imports = true
exclude = "docs"
[tool.pytest.ini_options]
testpaths = "tests"
python_files = [
"test_*.py",
"*_test.py",
"tests.py",
]