mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-17 16:24:40 +04:00
8 lines
186 B
Python
8 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']},
|
|
)
|