mirror of
https://github.com/pre-commit/pre-commit-hooks.git
synced 2026-03-29 18:16:52 +00:00
12 lines
263 B
Python
12 lines
263 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',
|
|
'simplejson',
|
|
],
|
|
)
|