forked from keras-team/autokeras
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
53 lines (46 loc) · 1.29 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
[metadata]
name = autokeras
summary = AutoKeras provides functions to automatically search for architecture and hyperparameters of deep learning models.
license = MIT
description-file = README.md
classifier =
Development Status :: 3 - Alpha
Programming Language :: Python
Programming Language :: Python :: 3.6
Operating System :: Unix
Operating System :: Microsoft :: Windows
Operating System :: MacOS
Intended Audience :: Science/Research
Topic :: Scientific/Engineering
Topic :: Software Development
[isort]
known_first_party = autokeras,tests
default_section = THIRDPARTY
skip_glob = docs/*
[tool:pytest]
filterwarnings =
error
ignore::DeprecationWarning
ignore::ImportWarning
ignore::RuntimeWarning
ignore::PendingDeprecationWarning
ignore::FutureWarning
ignore::numpy.VisibleDeprecationWarning
addopts=-v
--durations=10
--typeguard-packages=autokeras
--cov=autokeras
--cov-report html
--log-cli-level=CRITICAL
# Do not run tests in the build folder
norecursedirs= build
[coverage:report]
exclude_lines =
pragma: no cover
@abstract
raise NotImplementedError
[flake8]
# imported but unused in __init__.py, that's ok.
per-file-ignores = **/__init__.py:F401
ignore = E203, W503
max-line-length = 85