mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-01-02 06:50:23 -06:00
19 lines
374 B
Python
19 lines
374 B
Python
from setuptools import find_packages
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name='pre_commit',
|
|
version='0.0.0',
|
|
packages=find_packages('.', exclude=('tests*', 'testing*')),
|
|
package_data={
|
|
'pre_commit': [
|
|
'resources/pre-commit.sh'
|
|
]
|
|
},
|
|
install_requires=[
|
|
'argparse',
|
|
'plumbum',
|
|
'simplejson',
|
|
],
|
|
)
|