forked from skrub-data/skrub
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
107 lines (102 loc) · 2.54 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[metadata]
name = dirty_cat
version = file: dirty_cat/VERSION.txt
description = Machine learning with dirty categories.
long_description = file: README.rst
author = Patricio Cerda
author_email = [email protected]
license = BSD
license_files = LICENSE.txt
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Scientific/Engineering
Topic :: Software Development :: Libraries
project_urls =
Homepage = https://dirty-cat.github.io/
Source = https://github.com/dirty-cat/dirty_cat
[options]
include_package_data = True
packages = find:
install_requires =
scikit-learn>=0.23.0
numpy>=1.17.3
scipy>=1.4.0
pandas>=1.2.0
requests
joblib
pyarrow
python_requires = >=3.8
[options.extras_require]
dev =
pytest
pytest-cov
pytest-xdist
pytest-xdist[psutil]
coverage
mypy
numpydoc
flake8
openml
doc =
sphinx-gallery
sphinxext-opengraph
matplotlib
seaborn
statsmodels
benchmarks =
numpy
pandas
matplotlib
seaborn
tqdm
# Overwrite the previous install_requires for CI testing purposes
# as defined in testing.yml.
min-py38 =
scikit-learn==0.23.0
numpy==1.17.3
scipy==1.4.0
pandas==1.2.0
min-py39 =
scikit-learn==0.24.0
numpy==1.19.3
scipy==1.6.0
pandas==1.2.0
min-py310 =
scikit-learn==1.0.2
numpy==1.21.3
scipy==1.8.0
pandas==1.3.5
[flake8]
# max line length for black
max-line-length = 88
target-version = ['py310']
# Default flake8 3.5 ignored flags
ignore=
E24, # check ignored by default in flake8. Meaning unclear.
E121, # continuation line under-indented
E123, # closing bracket does not match indentation
E126, # continuation line over-indented for hanging indent
E203, # space before : (needed for how black formats slicing)
E226, # missing whitespace around arithmetic operator
E704, # multiple statements on one line (def)
E731, # do not assign a lambda expression, use a def
E741, # do not use variables named 'l', 'O', or 'I'
W503, # line break before binary operator
W504 # line break after binary operator
exclude=
.git,
__pycache__,
dist,
build
[mypy]
ignore_missing_imports = True
allow_redefinition = True
[codespell]
skip = ./.git,./.mypy_cache