-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
87 lines (78 loc) · 1.76 KB
/
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
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[build-system]
requires = ["poetry"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = 'cfrainbow'
version = '0.1.1'
authors = [
'Michael Aichmueller <[email protected]>'
]
license = 'MIT license'
description = 'Counterfactual Regret Minimization Open-Source Implementations'
readme = "README.md"
keywords = [
'counterfactual regret minimization',
'regret minimization',
'extensive form games',
'cfr',
'cfr+',
'discounted cfr',
'linear',
'monte-carlo',
'openspiel',
]
homepage = 'https://github.com/maichmueller/cfrainbow'
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Topic :: Scientific/Engineering :: Mathematics'
]
packages = [
{ include = "cfrainbow", from = "src" },
]
[tool.poetry.dependencies]
# Compatible Python versions
python = ">=3.8"
numpy = [
{ version = ">=1.22", python = ">=3.10" },
{ version = ">=1.19", python = "<=3.9" }
]
open_spiel = { version = ">=1.0" }
tqdm = "*"
numba = { version = ">=0.5" }
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pre-commit = "*"
tox = "*"
pytest = "*"
pytest-xdist = "*"
pytest-cov = "*"
[tool.poetry.group.packaging]
optional = true
[tool.poetry.group.packaging.dependencies]
beautifulsoup4 = "*"
[tool.black]
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.nox
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''