-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (67 loc) · 1.87 KB
/
pyproject.toml
File metadata and controls
74 lines (67 loc) · 1.87 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
[project]
name = "balatrobot"
version = "1.4.1"
description = "API for developing Balatro bots"
readme = "README.md"
authors = [
{ name = "S1M0N38", email = "bertolottosimone@gmail.com" },
{ name = "stirby" },
{ name = "giewev" },
{ name = "besteon" },
{ name = "phughesion" },
]
requires-python = ">=3.13"
dependencies = ["httpx>=0.28.1", "typer>=0.15"]
classifiers = [
"Framework :: Pytest",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.13",
]
[project.scripts]
balatrobot = "balatrobot.cli:main"
[project.urls]
Homepage = "https://github.com/coder/balatrobot"
Issues = "https://github.com/coder/balatrobot/issues"
Repository = "https://github.com/coder/balatrobot"
Changelog = "https://github.com/coder/balatrobot/blob/main/CHANGELOG.md"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
lint.extend-select = ["I"]
lint.task-tags = ["FIX", "TODO", "HACK", "WARN", "PERF", "NOTE", "TEST"]
[tool.pytest.ini_options]
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-rerunfailures>=16.1",
"pytest-xdist[psutil]>=3.8.0",
"tqdm>=4.67.1",
]
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",
]