mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-17 00:04:42 +04:00
12 lines
257 B
Python
12 lines
257 B
Python
from setuptools import find_packages
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name='pre_commit',
|
|
version='0.3.4',
|
|
packages=find_packages('.', exclude=('tests*', 'testing*')),
|
|
install_requires=[
|
|
'argparse',
|
|
'simplejson',
|
|
],
|
|
)
|