-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
39 lines (32 loc) · 908 Bytes
/
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
[tool.poetry]
name = "python-template"
version = "0.1.0"
authors = ["Your Name <[email protected]>"]
description = ""
readme = "README.md"
[tool.poetry.scripts]
slay = "game:main"
[tool.poetry.dependencies]
python = ">=3.11.0,<3.13"
ansimarkup = "^2.1.0"
pytest = "^7.4.3"
grandalf = "^0.8"
pyinstaller = "^6.3.0"
pytest-timeout = "^2.3.1"
[tool.poetry.group.dev.dependencies]
pytest-watch = "^4.2.0"
pytest-only = "^2.0.0"
pytest-cov = "^4.1.0"
[tool.pytest.ini_options]
pythonpath = "/workspaces/Slay-The-Spire-in-Python"
[tool.pyright]
# https://github.com/microsoft/pyright/blob/main/docs/configuration.md
useLibraryCodeForTypes = true
exclude = [".cache"]
[tool.ruff]
# https://beta.ruff.rs/docs/configuration/
select = ['E', 'W', 'F', 'I', 'B', 'C4', 'ARG', 'SIM']
ignore = ['W291', 'W292', 'W293', 'E501']
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"