Project initialization: Git, uv, dvc setup
This commit is contained in:
3
.dvc/.gitignore
vendored
Normal file
3
.dvc/.gitignore
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
/config.local
|
||||||
|
/tmp
|
||||||
|
/cache
|
||||||
7
.dvc/config
Normal file
7
.dvc/config
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
[cache]
|
||||||
|
dir = /mnt/fast/dvc-cache
|
||||||
|
shared = group
|
||||||
|
type = reflink
|
||||||
|
['remote "myremote"']
|
||||||
|
url = /mnt/safe/dvc-remote
|
||||||
|
shared = group
|
||||||
3
.dvcignore
Normal file
3
.dvcignore
Normal file
@@ -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
|
||||||
6
main.py
Normal file
6
main.py
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
def main():
|
||||||
|
print("Hello from spider-ctext!")
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
||||||
11
pyproject.toml
Normal file
11
pyproject.toml
Normal file
@@ -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",
|
||||||
|
]
|
||||||
Reference in New Issue
Block a user