mirror of
https://github.com/pre-commit/pre-commit-hooks.git
synced 2026-03-29 10:16:52 +00:00
20 lines
541 B
Python
20 lines
541 B
Python
from setuptools import find_packages
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name='pre_commit_hooks',
|
|
version='0.0.0',
|
|
packages=find_packages('.', exclude=('tests*', 'testing*')),
|
|
install_requires=[
|
|
'argparse',
|
|
'plumbum',
|
|
'pyflakes',
|
|
'simplejson',
|
|
],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'debug-statement-hook = pre_commit_hooks.debug_statement_hook:entry',
|
|
'trailing-whitespace-fixer = pre_commit_hooks.railing_whitespace_fixer:entry',
|
|
],
|
|
},
|
|
)
|