mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-01-14 13:00:10 -06:00
12 lines
251 B
Python
12 lines
251 B
Python
from setuptools import find_packages
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name='python3_hook',
|
|
version='0.0.0',
|
|
packages=find_packages('.'),
|
|
entry_points={
|
|
'console_scripts': ['python3-hook = python3_hook.main:func'],
|
|
},
|
|
)
|