mirror of
https://github.com/pre-commit/pre-commit-hooks.git
synced 2026-04-04 11:16:53 +00:00
Initial commit.
This commit is contained in:
commit
27291ffa31
10 changed files with 330 additions and 0 deletions
12
setup.py
Normal file
12
setup.py
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
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',
|
||||
],
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue