Setup nix run
This commit is contained in:
14
setup.py
Normal file
14
setup.py
Normal 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",
|
||||
],
|
||||
},
|
||||
)
|
||||
Reference in New Issue
Block a user