-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
69 lines (64 loc) · 1.78 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
[tool.poetry]
name = "temprl"
version = "0.4.0"
description = "Framework for Reinforcement Learning with Temporal Goals."
authors = ["MarcoFavorito <[email protected]>"]
license = "LGPL-3.0-or-later"
readme = "README.md"
homepage = "https://whitemech.github.io/temprl"
repository = "https://github.com/whitemech/temprl.git"
documentation = "https://whitemech.github.io/temprl"
keywords = [
"temprl",
"reinforcement-learning",
"temporal-logic"
]
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.8',
]
#packages = []
include = []
#[tool.poetry.scripts]
#script_name = 'path/to/script'
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/whitemech/temprl/issues"
"Pull Requests" = "https://github.com/whitemech/temprl/pulls"
[tool.poetry.dependencies]
python = "^3.8"
gym = ">=0.17.2"
numpy = "^1.22.2"
pythomata = "0.3.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 = "^22.3.0"
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.3.0"
markdown_include = "^0.6.0"
mkdocs-material = "^7.2"
ipython = "^7.18.1"
jupyter = "^1.0.0"
mknotebooks = "^0.6.0"
mkdocs-bibtex = { git = "https://github.com/marcofavorito/mkdocs-bibtex.git", branch = "master" }
darglint = "^1.8.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"