-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
82 lines (74 loc) · 2.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[metadata]
name = recommerce
version = 2022.04.27
description = Bachelor Project of 2021/2022 at the HPI EPIC research group
long_description = file: README.md
long_description_content_type = text/markdown
# of course won't work as long as we are private
url = https://github.com/hpi-epic/BP2021
author = Nick Bessin, Leonard Dreeßen, Jan Niklas Groeneveld, Judith Herrmann, Nikkel Mollenhauer, Johann Schulze-Tast
license = MIT
license_file = LICENSE
platforms = unix, linux, osx, cygwin, win32
classifiers =
Programming Language :: Python :: 3.8
[options]
zip_safe = no
install_requires =
docker>=5.0.3
# A newer version of gym breaks something!
gym==0.21.0
numpy>=1.21.2
pandas>=1.3.4
matplotlib>=3.5.0
tensorboard>=2.7.0
tqdm>=4.63.0
stable-baselines3[extra]>=1.5.0
# names is a webserver dependency, but unfortunately not available through conda
names>=0.3.0
scipy>=1.8.0
attrdict>=2.0.1
python_requires = >=3.8
[options.extras_require]
cpu =
torch>=1.11.0
torchvision>=0.12.0
torchaudio>=0.11.0
gpu =
torch==1.11.0+cu115
torchvision==0.12.0+cu115
torchaudio==0.11.0+cu115
[options.entry_points]
console_scripts =
recommerce = recommerce.main:main
# end of pip package configuration
################
[flake8]
# W191: Indentation contains tabs
# E128: Continuation line under-indented for visual indent
extend-ignore = W191, E128, F403, F405, E252
max-line-length = 140
# we don't write migration files ourselves
exclude = webserver/alpha_business_app/migrations/*
# F401: module imported but unused
per-file-ignores =
recommerce/monitoring/performance.py:F401
webserver/alpha_business_app/tests/test_prefill.py:E501
webserver/alpha_business_app/config_parser.py:F401
webserver/alpha_business_app/models/config.py:F401
webserver/alpha_business_app/models/hyperparameter_config.py:F401
[coverage:run]
omit =
# ignore __init__.py files
*/__init__.py
# ignore test files
tests/*
docker/test_docker_manager.py
webserver/alpha_business_app/tests/*
# ignore files only used as helpers
setup.py
test.py
recommerce/rl/training_scenario.py
recommerce/monitoring/performance.py
# ignore the webserver, it is tested elsewhere
webserver/*