Remove __main__ for now
Browse files- pyproject.toml +0 -3
- 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()
|
|
|
|
|
|
|
|
|
|
|
|
|
|