-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 940 Bytes
/
pyproject.toml
File metadata and controls
48 lines (42 loc) · 940 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "oracle"
version = "0.2.0"
description = "DOTA2 draft recommendation system using AlphaZero and MCTS"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "Tom Armstrong", email = "thomasarmstrong98@gmail.com"},
]
dependencies = [
"torch>=2.0.0",
"numpy>=1.24.0",
"pandas>=2.0.0",
"scikit-learn>=1.3.0",
"scipy>=1.10.0",
"matplotlib>=3.7.0",
"tqdm>=4.65.0",
"tensorboard>=2.13.0",
]
[project.optional-dependencies]
dev = [
"black>=23.0.0",
"ruff>=0.1.0",
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"ipykernel>=6.25.0",
"jupyter>=1.0.0",
]
[tool.black]
line-length = 100
target-version = ['py310']
[tool.ruff]
line-length = 100
target-version = "py310"
select = ["E", "W", "F", "I"]
ignore = ["E501"]
[tool.pytest.ini_options]
testpaths = ["tests"]