Files
TheOnlyMace b4110c3d66
Some checks failed
CI / Bot (Python) (push) Failing after 49s
CI / Dashboard (Next.js) (push) Failing after 11s
Update project configuration files, and API routes accordingly. Add SQLite runtime file ignores to .gitignore for better file management.
2026-07-21 17:11:38 +02:00

74 lines
2.5 KiB
Python

# ╔══════════════════════════════════════════════════════════════════╗
# ║ ║
# ║ +-+-+-+-+-+-+-+-+ ║
# ║ |H|e|x|a|H|o|s|t| ║
# ║ +-+-+-+-+-+-+-+-+ ║
# ║ ║
# ║ © 2026 HexaHost — All Rights Reserved ║
# ║ ║
# ║ discord ── https://discord.gg/hexahost ║
# ║ github ── https://github.com/theoneandonlymace ║
# ║ ║
# ╚══════════════════════════════════════════════════════════════════╝
"""Discord-Games
A library designed for simple implementation of various classical games into a discord.py bot
"""
from __future__ import annotations
from typing import NamedTuple
#import os
#os.system("pip install chess")
#os.system("pip install english-words")
#os.system("pip install pillow")
#os.system("pip install typing_extensions")
#from .aki import Akinator
from .battleship import BattleShip
from .chess_game import Chess
from .connect_four import ConnectFour
#from .hangman import Hangman
from .tictactoe import Tictactoe
from .twenty_48 import Twenty48, create_2048_emojis
from .typeracer import TypeRacer
from .rps import RockPaperScissors
from .reaction_test import ReactionGame
from .country_guess import CountryGuesser
from .wordle import Wordle
__all__: tuple[str, ...] = (
"BattleShip",
"Chess",
"ConnectFour",
"Tictactoe",
"Twenty48",
"create_2048_emojis",
"TypeRacer",
"RockPaperScissors",
"ReactionGame",
"CountryGuesser",
"Wordle",
)
__title__ = "discord_games"
__version__ = "1.10.6"
__author__ = "Tom-the-Bomb"
__license__ = "MIT"
__copyright__ = "Copyright 2021-present Tom-the-Bomb"
class VersionInfo(NamedTuple):
major: int
minor: int
micro: int
version_info: VersionInfo = VersionInfo(
major=1,
minor=10,
micro=6,
)
del NamedTuple, VersionInfo