-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (25 loc) · 848 Bytes
/
pyproject.toml
File metadata and controls
29 lines (25 loc) · 848 Bytes
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "scrap_engine"
authors = [{ name = "lxgr", email = "lxgr@protonmail.com" }]
description = "A 2D ascii game engine for the terminal"
keywords = ["game", "Ascii"]
version = "1.5.4"
license = { text = "GPL-3.0-only" }
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/lxgr-linux/scrap_engine"
Issues = "https://github.com/lxgr-linux/scrap_engine/issue"
Repository = "https://github.com/lxgr-linux/scrap_engine.git"
[tool.ruff]
line-length = 88
target-version = "py312"
[tool.ruff.lint]
per-file-ignores = {"**/tests/**" = ["F403"],"**/*_test.py" = ["F403"],"**/test_*.py" = ["F403"]}