-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (57 loc) · 1.57 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
52
53
54
55
56
57
58
59
60
61
[tool.poetry]
name = "onx"
version = "0.3.1"
description = "Noughts & Crosses (Tic Tac Toe) terminal based, client-server online game with your partner through websockets."
authors = ["Vladimir Vyalov <vyalov.v@gmail.com>"]
license = "GPL-3.0-or-later"
readme = "README.md"
repository = "/~https://github.com/vyalovvldmr/onx"
keywords = [
"Noughts & Crosses",
"Tic Tac Toe",
"terminal based game",
"online game",
"websockets",
]
classifiers = [
"Development Status :: 4 - Beta",
"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 General Public License v3 or later (GPLv3+)",
"Intended Audience :: Developers",
]
packages = [
{ include = "onx" },
{ include = "onx/server" },
{ include = "onx/tui" },
{ include = "run.py" },
]
[tool.poetry.dependencies]
python = "^3.10"
aiohttp = {version = "3.8.1", extras = ["speedups"]}
textual = "0.1.18"
pyfiglet = "0.8.post1"
click = "8.1.3"
pydantic = "1.9.2"
cachetools = "5.2.0"
single-source = "0.3.0"
[tool.poetry.dev-dependencies]
pytest = "7.1.2"
pytest-cov = "3.0.0"
black = "22.6.0"
mypy = "0.971"
pylint = "2.14.5"
flake8 = "5.0.4"
types-cachetools = "5.2.1"
pre-commit = "2.20.0"
[tool.poetry.scripts]
onx = "run:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"