2022-12-28 14:50:26 +00:00
|
|
|
[metadata]
|
|
|
|
name = blunderboard
|
|
|
|
version = 0.0.1
|
|
|
|
author = 0x90.space
|
|
|
|
author_email = people@schleuder.0x90.space
|
|
|
|
description = Blunderboard
|
|
|
|
url = https://git.0x90.space/0x90/blunderboard
|
|
|
|
project_urls =
|
|
|
|
Bug Tracker = https://git.0x90.space/0x90/blunderboard/issues
|
|
|
|
classifiers =
|
|
|
|
Programming Language :: Python :: 3 :: Only
|
|
|
|
License :: OSI Approved :: ISC License (ISCL)
|
|
|
|
Operating System :: POSIX :: Linux
|
|
|
|
Topic :: Games/Entertainment :: Board Games
|
|
|
|
|
|
|
|
[options]
|
|
|
|
package_dir =
|
|
|
|
= src
|
|
|
|
packages = find:
|
|
|
|
python_requires = >=3.9
|
|
|
|
install_requires =
|
|
|
|
pygame
|
|
|
|
RPi.GPIO
|
|
|
|
stockfish
|
2022-12-30 12:27:37 +00:00
|
|
|
requests
|
2022-12-28 14:50:26 +00:00
|
|
|
|
|
|
|
[options.packages.find]
|
|
|
|
where = src
|
|
|
|
|
2022-12-29 20:46:09 +00:00
|
|
|
[options.data_files]
|
2022-12-30 13:17:19 +00:00
|
|
|
share/blunderboard/sounds/blunder =
|
|
|
|
sounds/blunder/tts_what_a_blunder.mp3
|
|
|
|
share/blunderboard/sounds/illegal =
|
|
|
|
sounds/illegal/alarm.mp3
|
2022-12-29 20:46:09 +00:00
|
|
|
|
2022-12-28 14:50:26 +00:00
|
|
|
[options.entry_points]
|
|
|
|
console_scripts =
|
|
|
|
blunderboard = blunderboard:main
|
|
|
|
|
|
|
|
[tox:tox]
|
|
|
|
envlist = lint
|
|
|
|
isolated_build = True
|
|
|
|
|
|
|
|
[testenv:lint]
|
|
|
|
skip_install = True
|
|
|
|
deps =
|
|
|
|
black
|
|
|
|
flake8
|
|
|
|
mypy
|
|
|
|
commands =
|
|
|
|
black --check --diff src
|
|
|
|
flake8 src
|
|
|
|
mypy src
|
|
|
|
|
|
|
|
#[testenv]
|
|
|
|
#deps =
|
|
|
|
# pytest
|
|
|
|
#commands =
|
|
|
|
# pytest tests
|
|
|
|
|
|
|
|
[flake8]
|
|
|
|
max_line_length = 88
|
2022-12-30 13:17:19 +00:00
|
|
|
extend_ignore = E203
|
2022-12-28 14:50:26 +00:00
|
|
|
|
|
|
|
[mypy]
|
2022-12-29 14:47:14 +00:00
|
|
|
check_untyped_defs = True
|
2022-12-28 14:50:26 +00:00
|
|
|
ignore_missing_imports = True
|
2022-12-30 12:27:37 +00:00
|
|
|
install_types = True
|
|
|
|
non_interactive = True
|