-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
43 lines (39 loc) · 994 Bytes
/
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
[tool.poetry]
name = "pearll"
version = "0.4.1"
description = "Adaptable tools to make reinforcement learning and evolutionary computation algorithms"
license = "MIT"
authors = ["Rohan Tangri <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.7,<3.10"
torch = "^1.9.0"
numpy = "^1.20.3"
gym = "^0.19.0"
psutil = "^5.8.0"
tensorboard = "^2.7.0"
scikit-learn = "^1.0.1"
matplotlib = "^3.5.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
flake8 = "^3.9.2"
black = "^21.7b0"
isort = "^5.9.2"
pre-commit = "^2.13.0"
pytest-cov = "2.12.1"
coverage = {extras = ["toml"], version = "^5.5"}
[tool.pytest.ini_options]
addopts = """
--verbose
--junitxml build/reports/unittest.xml
-p no:warnings
-m 'not integration'
--tb=short -rEf
--cov pearll
--cov-config=.coveragerc
--cov-report xml:build/reports/coverage.xml
--cov-report term
--color=yes
"""
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"