16 lines
387 B
TOML
16 lines
387 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "mind-reader"
|
|
version = "0.1.0"
|
|
description = "Сетевая игра на угадывание последовательностей"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"wxPython>=4.2.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
mind-reader = "mind_reader.app:main" |