-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pipfile
32 lines (28 loc) · 1.18 KB
/
Pipfile
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
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
#importlib-metadata = "<2,>=0.12" # Fixes dependency conflict with virtualenv/pytest (importlib-metadata)
#autopep8 = "*" # Code formatter
flake8 = "*" # Base-linter module
flake8-quotes = "*" # flake8-extension to lint bad quoting
flake8-docstrings = "*" # flake8-ext for strict docstring linting
flake8-builtins = "*" # flake8-ext to check python builtins used as vars etc.
flake8-blind-except = "*" # flake8-ext to catch blind exception catches
flake8-use-fstring = "*" # flake8-ext to enforce f-strings
pep8-naming = "*" # flake8-ext to enforce pep8 naming conventions
black = "*" # Code formatter
isort = "*" # Automated import sorting
pytest = "<6" # Python base-testing library - 6 has dependency conflict with virtualenv (importlib-metadata)
tox = "*" # Automated and standardized testing in Python
[packages]
pybullet = "*" # Simulation environment
numpy = "*"
tensorflow = "==1.14" # Using TensorFlow v1 because stable-baselines does not support v2
gym = "*" # OpenAI Gym
stable-baselines = "*" # Base set of RL algorithm implementations
[requires]
python_version = "3.6"
[pipenv]
allow_prereleases = true