-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
73 lines (68 loc) · 1.89 KB
/
pyproject.toml
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
[tool.poetry]
name = "yarllib"
version = "0.2.0"
description = "Yet Another Reinforcement Learning Library"
authors = ["MarcoFavorito <marco.favorito@gmail.com>"]
license = "LGPL-3.0-or-later"
readme = "README.md"
homepage = "https://marcofavorito.github.io/yarllib"
repository = "https://github.com/marcofavorito/yarllib.git"
documentation = "https://marcofavorito.github.io/yarllib"
keywords = [
"reinforcement learning",
"framework",
"openai gym",
]
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
#packages = []
include = []
#[tool.poetry.scripts]
#script_name = 'path/to/script'
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/marcofavorito/yarllib/issues"
"Pull Requests" = "https://github.com/marcofavorito/yarllib/pulls"
[tool.poetry.dependencies]
python = "^3.7"
gym = "^0.17.2"
numpy = "^1.19.2"
matplotlib = "^3.3.2"
seaborn = "^0.11.0"
pandas = "^1.1.2"
scipy = "^1.5.2"
[tool.poetry.dev-dependencies]
pytest = "^6.0.1"
pytest-cov = "^2.10.1"
pytest-randomly = "^3.4.1"
tox = "^3.19.0"
codecov = "^2.1.9"
black = "==20.8b1"
mypy = "^0.782"
isort = "^5.4.2"
flake8 = "^3.8.3"
flake8-docstrings = "^1.5.0"
flake8-bugbear = "^20.1.4"
flake8-eradicate = "^0.4.0"
flake8-isort = "^4.0.0"
pylint = "^2.6.0"
safety = "^1.9.0"
vulture = "^2.1"
bandit = "^1.6.2"
mkdocs = "^1.1.2"
markdown_include = "^0.6.0"
mkdocs-material = "^5.5.11"
ipython = "^7.18.1"
jupyter = "^1.0.0"
mknotebooks = "^0.6.0"
mkdocs-bibtex = { git = "https://github.com/marcofavorito/mkdocs-bibtex.git", branch = "master" }
markdown = "3.2.2"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"