forked from chr15m/PodSixNet
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (64 loc) · 1.8 KB
/
Copy pathpyproject.toml
File metadata and controls
73 lines (64 loc) · 1.8 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
[project]
name = "repodnet"
version = "0.1.2"
description = "Modern async networking library for multiplayer games"
readme = "README.md"
license = "LGPL-3.0-or-later"
license-files = ["COPYING"]
requires-python = ">=3.12"
authors = [
{ name = "Walkercito", email = "walekrcitoliver@gmail.com" },
]
keywords = ["networking", "multiplayer", "gamedev", "async", "msgpack"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Games/Entertainment",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Networking",
"Typing :: Typed",
]
dependencies = [
"msgpack>=1.0.0",
]
[project.urls]
Homepage = "https://github.com/Walkercito/repod"
Repository = "https://github.com/Walkercito/repod"
Documentation = "https://walkercito.github.io/repod"
Issues = "https://github.com/Walkercito/repod/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["repod"]
[tool.ruff]
line-length = 92
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "SIM", "RUF"]
ignore = ["E303"]
fixable = ["ALL"]
[tool.ruff.lint.isort]
force-sort-within-sections = true
[dependency-groups]
dev = [
"pytest>=8.0",
"ruff>=0.15.4",
"ty>=0.0.20",
]
docs = [
"mkdocs-material>=9.7.4",
]
examples = [
"arcade>=3.0",
"pygame-ce>=2.5.7",
"raylib>=5.0.0.0",
]
[tool.ty.analysis]
allowed-unresolved-imports = ["pygame.**", "pyray.**", "arcade.**"]