forked from evidentlyai/evidently
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
55 lines (43 loc) · 1.08 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
[metadata]
name = evidently
version = attr: evidently._version.__version__
description = Open-source tools to analyze, monitor, and debug machine learning model in production.
author = Emeli Dral
author_email = [email protected]
url = https://github.com/evidentlyai/evidently
licence = Apache License 2.0
license_file = LICENSE
platforms = Linux, Mac OS X, Windows
[options]
python_requires = >= 3.6
include_package_data = true
packages = find:
package_dir =
=src
[options.packages.find]
where = src
[flake8]
ignore = E501,F401,W503,W504
max-line-length = 140
per-file-ignores =
src/evidently/tabs/__init__.py: F403
src/evidently/profile_sections/__init__.py: F403
src/evidently/widgets/__init__.py: F403
[mypy]
files = src/evidently
python_version = 3.6
[mypy-pandas.*]
ignore_missing_imports = True
[mypy-numpy.*]
ignore_missing_imports = True
[mypy-scipy.*]
ignore_missing_imports = True
[mypy-sklearn.*]
ignore_missing_imports = True
[mypy-plotly.*]
ignore_missing_imports = True
[mypy-IPython.*]
ignore_missing_imports = True
[tool:pytest]
testpaths =
tests