fix: some background env improve

This commit is contained in:
2025-09-18 20:34:01 +08:00
parent 438c887963
commit aacecdedce
3 changed files with 17 additions and 5 deletions

8
.gitignore vendored
View File

@@ -85,7 +85,7 @@ ipython_config.py
# pyenv
# For a library or package, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# .python-version
.python-version
# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
@@ -98,7 +98,7 @@ ipython_config.py
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
# This is especially recommended for binary packages to ensure reproducibility, and is more
# commonly ignored for libraries.
#uv.lock
uv.lock
# poetry
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
@@ -165,7 +165,7 @@ cython_debug/
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
.idea/
# Abstra
# Abstra is an AI-powered process automation framework.
@@ -178,7 +178,7 @@ cython_debug/
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
# and can be added to the global gitignore or merged into this file. However, if you prefer,
# you could uncomment the following to ignore the enitre vscode folder
# .vscode/
.vscode/
# Ruff stuff:
.ruff_cache/

10
pyproject.toml Normal file
View File

@@ -0,0 +1,10 @@
[project]
name = "matrixpybridge"
version = "0.0.1"
description = "A python plugin to sync messages between Minecraft server and matrix chat rooms."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"matrix-nio>=0.25.2",
"mcdreforged>=2.15.2",
]

2
requirements.txt Normal file
View File

@@ -0,0 +1,2 @@
matrix-nio
mcdreforged