-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (47 loc) · 1.42 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
[tool.poetry]
name = "pongy"
version = "0.4.1"
description = "Ping-pong multiplayer client-server game up to 4 players over network in early development stage."
authors = ["Vladimir Vyalov <vyalov.v@gmail.com>"]
license = "AGPL-3.0-or-later"
readme = "README.md"
repository = "https://github.com/vyalovvldmr/pongy"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Framework :: AsyncIO",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Operating System :: MacOS",
"Topic :: Games/Entertainment :: Board Games",
"Typing :: Typed",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Intended Audience :: Developers",
]
packages = [
{ include = "pongy" },
{ include = "pongy/server" },
{ include = "pongy/client" },
{ include = "pongy/client/widgets" },
{ include = "run.py" },
]
[tool.poetry.dependencies]
python = "^3.10"
pygame = "2.1.2"
pydantic = "1.10.2"
click = "8.1.3"
aiohttp = {extras = ["speedups"], version = "3.8.1"}
python-json-logger = "2.0.4"
single-source = "0.3.0"
[tool.poetry.dev-dependencies]
flake8 = "5.0.4"
black = "22.8.0"
mypy = "0.971"
pylint = "2.15.2"
pre-commit = "2.20.0"
[tool.poetry.scripts]
pongy = "run:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"