Setup nix run

This commit is contained in:
2025-02-17 12:22:04 -08:00
parent 75948c5271
commit 0685229d19
2 changed files with 42 additions and 9 deletions

14
setup.py Normal file
View File

@@ -0,0 +1,14 @@
#!/usr/bin/env python3
from setuptools import setup
setup(
name="google-cookie-retrieval",
version="0.1.0",
py_modules=["google_cookie_retrieval"], # The filename minus `.py`
entry_points={
"console_scripts": [
"google-cookie-retrieval = google_cookie_retrieval:main",
],
},
)