rm python3_hooks_repo

This commit is contained in:
anthony sottile 2025-11-08 13:33:50 -05:00
parent 5e4b3546f3
commit 95eec75004
4 changed files with 1 additions and 23 deletions

View file

@ -1,6 +0,0 @@
- id: python3-hook
name: Python 3 Hook
entry: python3-hook
language: python
language_version: python3
files: \.py$

View file

@ -1,8 +0,0 @@
import sys
def main():
print(sys.version_info[0])
print(repr(sys.argv[1:]))
print('Hello World')
return 0

View file

@ -1,8 +0,0 @@
from setuptools import setup
setup(
name='python3_hook',
version='0.0.0',
py_modules=['py3_hook'],
entry_points={'console_scripts': ['python3-hook = py3_hook:main']},
)