-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (28 loc) · 922 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
[tool.poetry]
name = "chess-embedding-experiments"
version = "0.1.0"
description = "For rapid prototyping on embedding experiments, starting from scratch"
authors = ["Patrick Frank <[email protected]>"]
packages = [
{ include = "src" }
]
[tool.poetry.dependencies]
python = "~3.11.8" # needed to install tensorflow # https://stackoverflow.com/a/76477590
dvc = {version = "2.55.0", extras = ["s3"]} # needs to be smaller than 3, because of dagshub incompatibility
chess = "^1.10.0"
# tensorflow = "2.11.0" # Downgraded from 2.13.0 for AWS Sage Maker Lab Compatibility
tensorflow = "^2.13.0"
keras-nlp = "^0.6.2"
numpy = "^1.24.3"
pymilvus = "^2.3.6"
[tool.poetry.dev-dependencies]
mlflow = "^2.5.0"
jupyter = "^1.0.0"
matplotlib = "^3.7.2"
ipywidgets = "^8.1.0"
llvmlite = "^0.41.0"
umap-learn = "^0.5.4"
flake8 = "^7.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"