-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (88 loc) · 2.22 KB
/
pyproject.toml
File metadata and controls
97 lines (88 loc) · 2.22 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[tool.poetry]
name = "smart_control"
version = "0.1.0"
description = ""
authors = []
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10.12,<3.12"
tensorflow = "2.15.1"
# The "dm-reverb" package is meant for Linux only, so we are conditionally
# ... installing the normal package on Linux, and another package on Mac.
# ... However there may still be issues with the Mac version.
# ... See: https://github.com/google/sbsim/issues/102 for details.
#dm-reverb = "^0.14.0"
#
dm-reverb = { version = "0.14.0", markers = "sys_platform == 'linux'" }
dm-reverb-macos = { version = "0.11.0.dev0", markers = "sys_platform == 'darwin'" }
#dm-reverb-macos-nightly = { version = ">=0.11.20241207", markers = "sys_platform == 'darwin'" }
pytz = "^2024.1"
gin-config = "^0.5.0"
matplotlib = "^3.9.2"
pandas = "^2.2.2"
bidict = "^0.23.1"
protobuf = "3.20.3"
pint = "^0.24.3"
holidays = "^0.56"
google3 = "^1.0.0"
opencv-python = "^4.10.0.84"
scipy = "^1.14.1"
mediapy = "^1.2.2"
seaborn = "^0.13.2"
tf-agents = "0.18.0"
scikit-learn = "^1.5.1"
ipykernel = "^6.29.5"
typing-extensions = "^4.12.2"
ipython = "^8.27.0"
importlib-resources = { version = "*", python = "<3.11" }
python-dotenv = "^1.1.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.5"
pyink = "^24.10.1"
pre-commit = "^4.2.0"
isort = "^6.0.1"
pylint = "^3.3.6"
pylint-per-file-ignores = "^1.4.0"
mdformat = "^0.7.22"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.6.1"
mkdocstrings = "^0.29.1"
mkdocstrings-python = "^1.16.10"
mkdocs-material = "^9.6.14"
mkdocs-autorefs = "^1.4.2"
[tool.poetry.group.notebooks.dependencies]
jupyter = "^1.1.1"
[tool.pyink]
line-length = 80
unstable = true
pyink-indentation = 2
pyink-use-majority-quotes = true
pyink-annotation-pragmas = [
"noqa",
"pylint:",
"type: ignore",
"pytype:",
"mypy:",
"pyright:",
"pyre-",
]
force-exclude = '''
(
/.*_pb2\.py
| /BUILD$
| /Dockerfile$
)
'''
[tool.isort]
lexicographical = true
group_by_package = true
order_by_type = false
force_sort_within_sections = true
force_single_line = true
line_length = 200
single_line_exclusions = ['typing']
known_first_party = ["smart_control"]
skip_glob = ['smart_control/proto/*']
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"