mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-17 08:14:42 +04:00
Initial commit.
This commit is contained in:
commit
7bb7f4a483
10 changed files with 329 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',
|
||||
version='0.3.4',
|
||||
packages=find_packages('.', exclude=('tests*', 'testing*')),
|
||||
install_requires=[
|
||||
'argparse',
|
||||
'simplejson',
|
||||
],
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue