From 344e6f0a958c63ce2de854123830050f00959d7f Mon Sep 17 00:00:00 2001 From: chfw Date: Sun, 23 Aug 2020 00:24:29 +0000 Subject: [PATCH] This is an auto-commit, updating project meta data, such as changelog.rst, contributors.rst --- MANIFEST.in | 1 + format.sh | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 format.sh diff --git a/MANIFEST.in b/MANIFEST.in index b1bf562..e86ae54 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,5 +1,6 @@ include README.rst include LICENSE include CHANGELOG.rst +include CONTRIBUTORS.rst recursive-include tests * recursive-include docs * diff --git a/format.sh b/format.sh new file mode 100644 index 0000000..3a0ecb9 --- /dev/null +++ b/format.sh @@ -0,0 +1,3 @@ +isort $(find pyexcel_ods -name "*.py"|xargs echo) $(find tests -name "*.py"|xargs echo) +black -l 79 pyexcel_ods +black -l 79 tests