Sign in
cobalt
/
pre-commit-hooks
/
5e713f8878b7d100c0e059f8cc34be4fc2e8f897
/
.
/
setup.py
blob: 496f5aad7fd7d38b279b0edea0ed5842662bafec [
file
] [
log
] [
blame
]
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'
,
'pyflakes'
,
'simplejson'
,
],
)