-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
82 lines (73 loc) · 2.03 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "cfrx"
description = "Counterfactual Regret Minimization in Jax"
readme = "README.md"
license = {file = "LICENSE"}
urls = {repository = "https://github.com/Egiob/cfrx" }
authors = [
{name="Raphaël Boige"},
]
requires-python = ">=3.9.0"
version = "0.0.2"
dependencies = [
"jaxtyping>=0.2.19",
"jax>=0.4.0",
"flax>=0.7.0",
"pgx= =2.0.1",
"tqdm~=4.66.0"
]
keywords = ["jax", "game-theory", "reinforcement-learning", "cfr", "poker"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["*"]
exclude = ["imgs"]
[tool.isort]
profile = "black"
[tool.mypy]
python_version = "3.10"
namespace_packages = true
incremental = false
cache_dir = ""
warn_redundant_casts = true
warn_return_any = true
warn_unused_configs = true
warn_unused_ignores = false
allow_redefinition = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = false
strict_optional = true
strict_equality = true
explicit_package_bases = true
follow_imports = "skip"
ignore_missing_imports = true
[tool.black]
line-length = 89
[tool.bumpver]
current_version = "0.0.2"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "build: bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = ['current_version = "{version}"', 'version = "{version}"']