commit a98fbea7360f9d3d2848409246eab521b575cbed Author: Dreagonmon <531486058@qq.com> Date: Sun Nov 2 13:58:52 2025 +0800 init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2386ae5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*.egg* +__pycache__ diff --git a/backup_box/__main__.py b/backup_box/__main__.py new file mode 100644 index 0000000..3abd9a1 --- /dev/null +++ b/backup_box/__main__.py @@ -0,0 +1,5 @@ +def main(): + print("Hello World") + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..d64a910 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,19 @@ +[project] +name = "backup_box" +version = "0.0.1" +license = "MIT" +authors = [{ name="Dreagonmon" }] +dependencies = [] + +[build-system] +requires = [ + "setuptools >= 40.9.0", +] +build-backend = "setuptools.build_meta" + +[tool.setuptools.packages.find] +# All the following settings are optional: +where = ["."] # ["."] by default +include = ["backup_box"] # ["*"] by default +exclude = ["backup_box/tests*"] # empty by default +namespaces = true # true by default \ No newline at end of file