commit 7405afdf974fce82fdb50a764dc526a5fbb7cc2c Author: denglifan Date: Fri Mar 20 09:08:59 2026 +0800 Project initialization: Git, uv, dvc setup diff --git a/.dvc/.gitignore b/.dvc/.gitignore new file mode 100644 index 0000000..528f30c --- /dev/null +++ b/.dvc/.gitignore @@ -0,0 +1,3 @@ +/config.local +/tmp +/cache diff --git a/.dvc/config b/.dvc/config new file mode 100644 index 0000000..efa4c71 --- /dev/null +++ b/.dvc/config @@ -0,0 +1,7 @@ +[cache] + dir = /mnt/fast/dvc-cache + shared = group + type = reflink +['remote "myremote"'] + url = /mnt/safe/dvc-remote + shared = group diff --git a/.dvcignore b/.dvcignore new file mode 100644 index 0000000..5197305 --- /dev/null +++ b/.dvcignore @@ -0,0 +1,3 @@ +# Add patterns of files dvc should ignore, which could improve +# the performance. Learn more at +# https://dvc.org/doc/user-guide/dvcignore diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/main.py b/main.py new file mode 100644 index 0000000..0eebfa6 --- /dev/null +++ b/main.py @@ -0,0 +1,6 @@ +def main(): + print("Hello from spider-ctext!") + + +if __name__ == "__main__": + main() diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..2db3361 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,11 @@ +[project] +name = "spider-ctext" +version = "0.1.0" +description = "Add your description here" +readme = "README.md" +requires-python = ">=3.12" +dependencies = [ + "cowsay>=6.1", + "numpy>=2.4.3", + "pandas>=3.0.1", +]