vimmoos@Thor
commited on
Commit
·
ac475d0
1
Parent(s):
b49af5c
add reqs
Browse files- pyproject.toml +36 -0
- requirements.txt +60 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[tool.black]
|
| 2 |
+
line-length = 79 # from pep
|
| 3 |
+
target-version = ['py310']
|
| 4 |
+
|
| 5 |
+
[tool.isort]
|
| 6 |
+
line_length = 79
|
| 7 |
+
multi_line_output = 3
|
| 8 |
+
include_trailing_comma = true
|
| 9 |
+
force_grid_wrap = 0
|
| 10 |
+
use_parentheses = true
|
| 11 |
+
ensure_newline_before_comments = true
|
| 12 |
+
|
| 13 |
+
[tool.mypy]
|
| 14 |
+
python_version = "3.10"
|
| 15 |
+
plugins = [ "numpy.typing.mypy_plugin" ]
|
| 16 |
+
|
| 17 |
+
[tool.poetry]
|
| 18 |
+
name = "upside-down-rl"
|
| 19 |
+
version = "0.1.0"
|
| 20 |
+
description = ""
|
| 21 |
+
authors = ["Your Name <[email protected]>"]
|
| 22 |
+
readme = "README.md"
|
| 23 |
+
|
| 24 |
+
[tool.poetry.dependencies]
|
| 25 |
+
python = "3.10.14"
|
| 26 |
+
scikit-learn = "^1.5.2"
|
| 27 |
+
matplotlib = "^3.9.2"
|
| 28 |
+
gymnasium = {extras = ["box2d"], version = "^0.29.1"}
|
| 29 |
+
scikit-image = "^0.24.0"
|
| 30 |
+
tqdm = "^4.66.5"
|
| 31 |
+
torch = "^2.4.1"
|
| 32 |
+
|
| 33 |
+
|
| 34 |
+
[build-system]
|
| 35 |
+
requires = ["poetry-core"]
|
| 36 |
+
build-backend = "poetry.core.masonry.api"
|
requirements.txt
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
absl-py==2.1.0 ; python_full_version == "3.10.14"
|
| 2 |
+
astunparse==1.6.3 ; python_full_version == "3.10.14"
|
| 3 |
+
certifi==2024.8.30 ; python_full_version == "3.10.14"
|
| 4 |
+
charset-normalizer==3.3.2 ; python_full_version == "3.10.14"
|
| 5 |
+
cloudpickle==3.0.0 ; python_full_version == "3.10.14"
|
| 6 |
+
colorama==0.4.6 ; python_full_version == "3.10.14" and platform_system == "Windows"
|
| 7 |
+
contourpy==1.3.0 ; python_full_version == "3.10.14"
|
| 8 |
+
cycler==0.12.1 ; python_full_version == "3.10.14"
|
| 9 |
+
farama-notifications==0.0.4 ; python_full_version == "3.10.14"
|
| 10 |
+
flatbuffers==24.3.25 ; python_full_version == "3.10.14"
|
| 11 |
+
fonttools==4.53.1 ; python_full_version == "3.10.14"
|
| 12 |
+
gast==0.6.0 ; python_full_version == "3.10.14"
|
| 13 |
+
google-pasta==0.2.0 ; python_full_version == "3.10.14"
|
| 14 |
+
grpcio==1.66.1 ; python_full_version == "3.10.14"
|
| 15 |
+
gymnasium==0.29.1 ; python_full_version == "3.10.14"
|
| 16 |
+
h5py==3.11.0 ; python_full_version == "3.10.14"
|
| 17 |
+
idna==3.10 ; python_full_version == "3.10.14"
|
| 18 |
+
imageio==2.35.1 ; python_full_version == "3.10.14"
|
| 19 |
+
joblib==1.4.2 ; python_full_version == "3.10.14"
|
| 20 |
+
keras==3.5.0 ; python_full_version == "3.10.14"
|
| 21 |
+
kiwisolver==1.4.7 ; python_full_version == "3.10.14"
|
| 22 |
+
lazy-loader==0.4 ; python_full_version == "3.10.14"
|
| 23 |
+
libclang==18.1.1 ; python_full_version == "3.10.14"
|
| 24 |
+
markdown-it-py==3.0.0 ; python_full_version == "3.10.14"
|
| 25 |
+
markdown==3.7 ; python_full_version == "3.10.14"
|
| 26 |
+
markupsafe==2.1.5 ; python_full_version == "3.10.14"
|
| 27 |
+
matplotlib==3.9.2 ; python_full_version == "3.10.14"
|
| 28 |
+
mdurl==0.1.2 ; python_full_version == "3.10.14"
|
| 29 |
+
ml-dtypes==0.4.1 ; python_full_version == "3.10.14"
|
| 30 |
+
namex==0.0.8 ; python_full_version == "3.10.14"
|
| 31 |
+
networkx==3.3 ; python_full_version == "3.10.14"
|
| 32 |
+
numpy==1.24.4 ; python_full_version == "3.10.14"
|
| 33 |
+
opt-einsum==3.3.0 ; python_full_version == "3.10.14"
|
| 34 |
+
optree==0.12.1 ; python_full_version == "3.10.14"
|
| 35 |
+
packaging==24.1 ; python_full_version == "3.10.14"
|
| 36 |
+
pillow==10.4.0 ; python_full_version == "3.10.14"
|
| 37 |
+
protobuf==4.25.4 ; python_full_version == "3.10.14"
|
| 38 |
+
pygments==2.18.0 ; python_full_version == "3.10.14"
|
| 39 |
+
pyparsing==3.1.4 ; python_full_version == "3.10.14"
|
| 40 |
+
python-dateutil==2.9.0.post0 ; python_full_version == "3.10.14"
|
| 41 |
+
requests==2.32.3 ; python_full_version == "3.10.14"
|
| 42 |
+
rich==13.8.1 ; python_full_version == "3.10.14"
|
| 43 |
+
scikit-image==0.24.0 ; python_full_version == "3.10.14"
|
| 44 |
+
scikit-learn==1.5.2 ; python_full_version == "3.10.14"
|
| 45 |
+
scipy==1.14.1 ; python_full_version == "3.10.14"
|
| 46 |
+
setuptools==75.1.0 ; python_full_version == "3.10.14"
|
| 47 |
+
six==1.16.0 ; python_full_version == "3.10.14"
|
| 48 |
+
tensorboard-data-server==0.7.2 ; python_full_version == "3.10.14"
|
| 49 |
+
tensorboard==2.17.1 ; python_full_version == "3.10.14"
|
| 50 |
+
tensorflow-io-gcs-filesystem==0.37.1 ; python_full_version == "3.10.14"
|
| 51 |
+
tensorflow==2.17.0 ; python_full_version == "3.10.14"
|
| 52 |
+
termcolor==2.4.0 ; python_full_version == "3.10.14"
|
| 53 |
+
threadpoolctl==3.5.0 ; python_full_version == "3.10.14"
|
| 54 |
+
tifffile==2024.8.30 ; python_full_version == "3.10.14"
|
| 55 |
+
tqdm==4.66.5 ; python_full_version == "3.10.14"
|
| 56 |
+
typing-extensions==4.12.2 ; python_full_version == "3.10.14"
|
| 57 |
+
urllib3==2.2.3 ; python_full_version == "3.10.14"
|
| 58 |
+
werkzeug==3.0.4 ; python_full_version == "3.10.14"
|
| 59 |
+
wheel==0.44.0 ; python_full_version == "3.10.14"
|
| 60 |
+
wrapt==1.16.0 ; python_full_version == "3.10.14"
|