-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (74 loc) · 2.25 KB
/
Copy pathpyproject.toml
File metadata and controls
79 lines (74 loc) · 2.25 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
[project]
name = "game_state"
version = "2.5.0"
authors = [{ name = "Krish Mohan M.", email = "jigglyballs9000@gmail.com" }]
description = "A pygame utility package that allows you to handle different screens in an organized manner."
readme = "README.md"
requires-python = ">=3.8"
dependencies = []
classifiers = [
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Games/Entertainment",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: pygame",
"Topic :: Utilities",
]
[project.urls]
Source = "https://github.com/Jiggly-Balls/game-state"
Documentation = "https://game-state.readthedocs.io/en/latest/index.html"
Issues = "https://github.com/Jiggly-Balls/game-state/issues"
Stars = "https://github.com/Jiggly-Balls/game-state/stargazers"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.basedpyright]
exclude = [
"**/node_modules",
"**/__pycache__",
"**/.*",
"venv/",
"build/",
"dist/",
"local/",
# "examples/",
"docs/",
"lib_testing/",
]
reportImportCycles = false
reportUnnecessaryIsInstance = false
reportImplicitStringConcatenation = false
reportUnusedCallResult = false
reportMissingTypeStubs = false
reportAny = false
reportExplicitAny = false
reportDeprecated = false
reportImplicitOverride = false
reportUnusedParameter = false
[tool.uv.workspace]
members = ["examples"]
[dependency-groups]
dev = [
"basedpyright>=1.39.9",
"coverage>=7.15.2",
"pre-commit>=3.5.0",
"pygame-ce>=2.5.5",
"pytest>=9.1.1",
"pytest-asyncio>=1.3.0",
"ruff>=0.15.21",
"sphinx-autobuild>=2025.8.25",
]