-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
executable file
·36 lines (31 loc) · 1.02 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
[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.7
[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