mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-01-15 05:20:20 -06:00
9 lines
192 B
Python
9 lines
192 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='python3_hook',
|
|
version='0.0.0',
|
|
py_modules=['python3_hook'],
|
|
entry_points={'console_scripts': ['python3-hook=python3_hook:main']},
|
|
)
|