-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
73 lines (64 loc) · 1.6 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 = "airl-market-making"
version = "1.0.0"
description = "Codes for the AIRL for Market Making paper."
authors = ["Juraj Zelman"]
package-mode = false
[tool.poetry.dependencies]
python = ">=3.11,<3.12"
imitation = {path = "./.packages/imitation-1.0.0"}
stable-baselines3 = {path = "./.packages/stable_baselines3-2.2.1"}
numpy = "^1.26.0"
matplotlib = "^3.8.0"
setuptools = "^66"
sortedcontainers = "^2.4.0"
plotly = "^5.17.0"
ipykernel = "^6.25.2"
nbformat = "^5.9.2"
polars = "^0.19.15"
pandas = "^2.1.1"
ipywidgets = "^8.1.1"
rich = "^13.6.0"
pyllist = "^0.3"
sbx-rl = "^0.9.0"
seaborn = "^0.13.2"
lakeapi = "0.11.2"
[tool.poetry.group.dev.dependencies]
ruff = "^0.6.5"
pre-commit = "^3.8.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 80
indent-width = 4
exclude = [
".packages/", # exclude formatting of package modifications
]
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"N", # PEP8 naming convetions
"D" # pydocstyle
]
ignore = [
"C901", # too complex
"W191", # indentation contains tabs
"D205", # blank line before summary
"D212", # multi-line docstring summary should start at the second line
"D401", # imperative mood
]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[tool.setuptools_scm]
local_scheme = "no-local-version"