Files
pre-commit/testing/resources/python3_hooks_repo/setup.py
2018-05-12 11:37:13 -07:00

9 lines
186 B
Python

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']},
)