-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (27 loc) · 808 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (27 loc) · 808 Bytes
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 = "elocator"
version = "0.1.0"
description = "A project to help identify the Elo of a chess player based on a set of moves or games. Can be used to identify cheating, game throwing, or other anomalies in a players game."
authors = ["Caleb Wetherell <cmwetherell@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
chess = "^1.10.0"
pandas = "^2.1.4"
numpy = "^1.26.3"
plotly = "^5.18.0"
statsmodels = "^0.14.1"
uvicorn = "^0.27.1"
fastapi = "^0.109.2"
jsonify = "^0.5"
matplotlib = "^3.10.0"
seaborn = "^0.13.2"
[[tool.poetry.source]]
name = "pytorch"
url = "https://download.pytorch.org/whl/cpu"
priority = "explicit"
[tool.poetry.group.dev.dependencies]
torch = "^2.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"