mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-01-01 06:20:33 -06:00
22 lines
531 B
Python
22 lines
531 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*')),
|
|
install_requires=[
|
|
'argparse',
|
|
'jsonschema',
|
|
'plumbum',
|
|
'pyyaml',
|
|
'simplejson',
|
|
],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'pre-commit = pre_commit.entry_points:pre_commit_func',
|
|
'validate-manifest = pre_commit.entry_points:validate_manifest_func',
|
|
],
|
|
}
|
|
)
|