-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.cfg
78 lines (70 loc) · 1.71 KB
/
setup.cfg
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
[metadata]
name = fairlens
author = Synthesized Ltd.
author_email = [email protected]
maintainer = Synthesized Ltd.
description = Identify bias and measure fairness of your data
license = 'BSD 3-Clause License'
license_file = LICENSE.md
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/synthesized-io/fairlens
project_urls =
Company = https://synthesized.io
classifiers =
License :: OSI Approved :: BSD License
Development Status :: 4 - Beta
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Operating System :: Microsoft :: Windows
Operating System :: Unix
Operating System :: MacOS
Intended Audience :: Developers
Intended Audience :: Science/Research
[options]
package_dir =
= src
packages = find:
python_requires = >=3.6
install_requires =
numpy>=1.18.4
pandas>=1.1.5
scipy>=1.5.4
scikit_learn>=0.23.2
matplotlib>=2.1.0
seaborn>=0.11.1
dcor>=0.5.3
[options.packages.find]
where = src
[options.package_data]
fairlens =
sensitive/configs/*.json
[options.extras_require]
dev =
pre-commit
test =
pytest>=6
pytest-cov>=2
pyemd==0.5.1
doc =
sphinx>=4.3.1,<4.6.0
ipython~=7.30.1
m2r2~=0.3.1
pydata-sphinx-theme>=0.7.2,<0.9.0
sphinx-panels~=0.6.0
sphinxcontrib-bibtex~=2.3.0
pandoc>=2.0.1,<2.2.0
nbsphinx~=0.8.7
nbsphinx-link~=1.3.0
[flake8]
max-line-length = 120
extend-ignore = E203, W503
[tool:isort]
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
ensure_newline_before_comments = True
line_length = 120