Image Feature Extraction
Transformers
Safetensors
dinov2
fepegar commited on
Commit
74118da
·
1 Parent(s): d9eb255

Remove __main__ for now

Browse files
Files changed (2) hide show
  1. pyproject.toml +0 -3
  2. src/rad_dino/__main__.py +0 -6
pyproject.toml CHANGED
@@ -15,9 +15,6 @@ dependencies = [
15
  "typer>=0.16.0",
16
  ]
17
 
18
- [project.scripts]
19
- rad-dino = "rad_dino.__main__:main"
20
-
21
  [build-system]
22
  requires = ["uv_build>=0.8.3,<0.9.0"]
23
  build-backend = "uv_build"
 
15
  "typer>=0.16.0",
16
  ]
17
 
 
 
 
18
  [build-system]
19
  requires = ["uv_build>=0.8.3,<0.9.0"]
20
  build-backend = "uv_build"
src/rad_dino/__main__.py DELETED
@@ -1,6 +0,0 @@
1
- def main():
2
- print("Hello from rad-dino!")
3
-
4
-
5
- if __name__ == "__main__":
6
- main()