-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
executable file
·49 lines (40 loc) · 1.22 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
[metadata]
name = reward_preprocessing
version = 0.0.1
author = "Erik Jenner and Adam Gleave"
author_email = "[email protected]"
[options]
packages = find:
package_dir =
=src
[options.packages.find]
where = src
[flake8]
docstring-convention=google
ignore = E203, W503
max-line-length = 88
[pytype]
inputs =
src/
tests/
setup.py
python_version = 3.9
[black]
target-version = "py39"
[isort]
known_first_party = "reward_preprocessing"
known_third_party = "wandb"
multi_line_output = 3
force_sort_within_sections = true
skip = ".pytype", ".venv"
profile = black
[tool:pytest]
markers =
expensive: mark a test as expensive (deselect with '-m "not expensive"')
filterwarnings =
ignore:`np.int` is a deprecated alias for the builtin `int`:DeprecationWarning
ignore:`np.float` is a deprecated alias for the builtin `float`:DeprecationWarning
ignore:`np.object` is a deprecated alias for the builtin `object`:DeprecationWarning
ignore:`np.bool` is a deprecated alias for the builtin `bool`:DeprecationWarning
ignore:Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated:DeprecationWarning
ignore:Call to deprecated create function Descriptor():DeprecationWarning