Init commit.

This commit is contained in:
2025-12-04 04:16:18 +08:00
commit 374aa58675
4 changed files with 27 additions and 0 deletions

13
.gitignore vendored Normal file
View File

@@ -0,0 +1,13 @@
# Python-generated files
__pycache__/
*.py[ocd]
build/
dist/
wheels/
*.egg-info
# Virtual environments
.venv
# uv lock file
uv.lock

1
.python-version Normal file
View File

@@ -0,0 +1 @@
3.9

0
README.md Normal file
View File

13
pyproject.toml Normal file
View File

@@ -0,0 +1,13 @@
[project]
name = "mcdr-server"
version = "0.0.1"
description = "MCDR For Server Using"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"mcdreforged>=2.15.5",
]
[[tool.uv.index]]
url = "https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple"
default = true