Mirror: 0.1

This commit is contained in:
pre-commit 2018-05-30 21:38:46 +00:00
parent 0e6fbb60dc
commit c5b21fb558
3 changed files with 16 additions and 0 deletions

7
.pre-commit-hooks.yaml Normal file
View File

@ -0,0 +1,7 @@
- id: mypy
name: mypy
entry: mypy
language: python
'types': [python]
args: ["--ignore-missing-imports"]
additional_dependencies: []

1
.version Normal file
View File

@ -0,0 +1 @@
0.1

8
setup.py Normal file
View File

@ -0,0 +1,8 @@
from setuptools import setup
setup(
name='pre_commit_dummy_package',
version='0.0.0',
install_requires=['mypy==0.1'],
)