-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.cfg
56 lines (50 loc) · 1.73 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
[metadata]
name = gym_banana
version = 0.0.3
description = A simple stochastic OpenAI environment for training RL agents
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/MartinThoma/banana-gym
author = Martin Thoma
author_email = [email protected]
maintainer = Martin Thoma
maintainer_email = [email protected]
license = MIT
platforms = Linux
classifiers =
Development Status :: 3 - Alpha
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Information Technology
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Software Development
Topic :: Utilities
download_url = https://github.com/MartinThoma/banana-gym
keywords = utility,reinforcement-learning,RL,openai-gym,openai-environment,artificial-intelligence,
[options]
packages = find:
python_requires = >=3.6
[tool:pytest]
addopts = --doctest-modules --mccabe --cov=./gym_banana --cov-report html:tests/reports/coverage-html --cov-report xml:tests/reports/coverage.xml --cov-report term-missing --flake8 --ignore=docs/ --durations=3 --mypy
doctest_encoding = utf-8
mccabe-complexity = 10
[pydocstyle]
match_dir = gym_banana
ignore = D104, D105, D107, D301, D413, D203, D212, D100
[flake8]
max_line_length = 88
exclude = tests/
ignore = H301, H306, H404, H405, W503, D105, D413, D103, D107, E252, N803, E203
[mutmut]
backup = False
runner = python -m pytest
tests_dir = tests/
[mypy]
ignore_missing_imports = True