-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (73 loc) · 2.13 KB
/
pyproject.toml
File metadata and controls
84 lines (73 loc) · 2.13 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[project]
name = "balatrollm"
version = "1.1.1"
description = "LLM-powered bot that plays Balatro using strategic decision making"
readme = "README.md"
authors = [{ name = "S1M0N38", email = "bertolottosimone@gmail.com" }]
requires-python = ">=3.13"
dependencies = [
"jinja2>=3.1.6",
"openai>=2.14.0",
"pyyaml>=6.0.3",
"httpx>=0.28.1",
"balatrobot>=1.4.1",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.13",
]
[project.scripts]
balatrollm = "balatrollm.cli:main"
[project.urls]
Homepage = "https://github.com/coder/balatrollm"
Issues = "https://github.com/coder/balatrollm/issues"
Repository = "https://github.com/coder/balatrollm"
Changelog = "https://github.com/coder/balatrollm/blob/main/CHANGELOG.md"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
exclude = [".venv", "balatrobot", "balatro"]
lint.extend-select = ["I"]
lint.task-tags = ["FIX", "TODO", "HACK", "WARN", "PERF", "NOTE", "TEST"]
# [tool.uv.sources]
# balatrobot = { git = "https://github.com/coder/balatrobot.git", rev = "main" }
# Or use local balatrobot for local development
# balatrobot = { path = "../balatrobot", editable = true }
[tool.hatch.metadata]
allow-direct-references = true
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "session"
addopts = "--dist loadscope"
markers = [
"dev: marks tests that are currently developed",
"integration: marks integration tests that actually start Balatro (deselect with '-m \"not integration\"')",
]
[tool.commitizen]
name = "cz_conventional_commits"
version_provider = "pep621"
[dependency-groups]
test = [
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"pytest-cov>=7.0.0",
"pytest-xdist[psutil]>=3.5.0",
"respx>=0.22.0",
]
dev = [
"commitizen>=4.11.0",
"mdformat>=0.7.22,<0.8.0",
"mdformat-footnote>=0.1.2",
"mdformat-frontmatter>=2.0.8",
"mdformat-gfm>=1.0.0",
"mdformat-gfm-alerts>=2.0.0",
"mdformat-mkdocs>=5.1.1",
"mdformat-simple-breaks>=0.0.1",
"mkdocs>=1.6.1",
"mkdocs-llmstxt>=0.5.0",
"mkdocs-material>=9.7.1",
"ruff>=0.14.10",
"ty>=0.0.9",
]