-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (46 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
53 lines (46 loc) · 1.63 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "spritepro"
version = "3.9.2"
authors = [
{ name="NeoXider", email="neoxider@gmail.com" },
]
description = "A high-level cross-platform 2D game framework for Python with desktop, web, and mobile workflows."
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Games/Entertainment",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
dependencies = [
"pygame>=2.0.0",
"pymunk>=6.0.0",
]
[project.optional-dependencies]
web = ["pygbag>=0.9.0"]
kivy = ["kivy"]
[project.urls]
Homepage = "https://github.com/NeoXider/SpritePro"
Issues = "https://github.com/NeoXider/SpritePro/issues"
[project.scripts]
spritepro = "spritePro.cli:main"
[tool.setuptools.packages.find]
include = ["spritePro*"]
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
# E402: импорты не в начале файла — в демо и части модулей осознанно (path, if __name__)
# F841: переменные вроде player = s.Sprite() не читаются кодом, но объект участвует в сцене — имя оставляем для ясности
extend-ignore = ["E402", "F841"]