-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (56 loc) · 1.3 KB
/
pyproject.toml
File metadata and controls
62 lines (56 loc) · 1.3 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
[project]
name = "colver"
version = "0.6.2"
description = "Fast Belote Contree game engine with AI agents"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.10"
keywords = ["belote", "card-game", "reinforcement-learning", "mcts"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Rust",
"Programming Language :: Python :: 3",
"Topic :: Games/Entertainment :: Board Games",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"numpy",
"matplotlib>=3.5",
"runpod>=1.8.1",
]
[project.optional-dependencies]
web = [
"fastapi>=0.100.0",
"uvicorn[standard]>=0.20.0",
"websockets>=12.0",
"aiosqlite>=0.20.0",
]
dev = [
"colver[web]",
"torch>=2.0",
"maturin>=1.0,<2.0",
]
[project.scripts]
colver-web = "colver.web:main"
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[tool.maturin]
module-name = "colver._colver"
manifest-path = "colver-py/Cargo.toml"
python-source = "python"
[tool.uv]
# Local dev installs all extras
default-groups = ["dev"]
[dependency-groups]
dev = [
"colver[web]",
"torch>=2.0",
"maturin>=1.0,<2.0",
"pandas>=2.3.3",
"scikit-learn>=1.7.2",
"xgboost>=3.2.0",
"shap>=0.49.1",
"matplotlib>=3.10.8",
]