From c5b21fb5587530dfb7cecaa6efa985f469170fb6 Mon Sep 17 00:00:00 2001 From: pre-commit Date: Wed, 30 May 2018 21:38:46 +0000 Subject: [PATCH] Mirror: 0.1 --- .pre-commit-hooks.yaml | 7 +++++++ .version | 1 + setup.py | 8 ++++++++ 3 files changed, 16 insertions(+) create mode 100644 .pre-commit-hooks.yaml create mode 100644 .version create mode 100644 setup.py diff --git a/.pre-commit-hooks.yaml b/.pre-commit-hooks.yaml new file mode 100644 index 0000000..c06ec6c --- /dev/null +++ b/.pre-commit-hooks.yaml @@ -0,0 +1,7 @@ +- id: mypy + name: mypy + entry: mypy + language: python + 'types': [python] + args: ["--ignore-missing-imports"] + additional_dependencies: [] diff --git a/.version b/.version new file mode 100644 index 0000000..49d5957 --- /dev/null +++ b/.version @@ -0,0 +1 @@ +0.1 diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..be46cd3 --- /dev/null +++ b/setup.py @@ -0,0 +1,8 @@ +from setuptools import setup + + +setup( + name='pre_commit_dummy_package', + version='0.0.0', + install_requires=['mypy==0.1'], +)