From 5730150b8c380a2e4bbae831d53e86cc3f3f7849 Mon Sep 17 00:00:00 2001 From: Felix Lohmeier Date: Fri, 16 Aug 2019 13:15:51 +0200 Subject: [PATCH] prepare distribution --- MANIFEST.in | 1 - README.md | 7 ++++--- setup.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 7148618..f464c19 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -2,4 +2,3 @@ include README.md include COPYING.txt recursive-include tests/data *.csv recursive-include tests *.py -prune docker diff --git a/README.md b/README.md index 706e3ee..6f2e18f 100644 --- a/README.md +++ b/README.md @@ -661,7 +661,7 @@ Note to myself: When releasing a new version... - Run PyInstaller in Python 2 environments on native Windows, macOS and Linux. Should be "the oldest version of the OS you need to support"! Current release is built with: - - Ubuntu 14.04 LTS (64-bit) + - Ubuntu 16.04 LTS (64-bit) - macOS Sierra 10.12 - Windows 10 @@ -670,8 +670,9 @@ Note to myself: When releasing a new version... ``` git clone https://github.com/opencultureconsulting/openrefine-client.git cd openrefine-client - pip install pyinstaller - pyinstaller --onefile refine.py + python -m pip install . --user + python -m pip install pyinstaller --user + pyinstaller --onefile refine.py --hidden-import google.refine__main__.py ``` 4. Create release in GitHub diff --git a/setup.py b/setup.py index 0df8def..504aaf4 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ def read(filename): return open(os.path.join(os.path.dirname(__file__), filename)).read() setup(name='openrefine-client', - version='0.3.6', + version='0.3.7', description=('The OpenRefine Python Client Library provides an ' 'interface to communicating with an OpenRefine server. ' 'This fork extends the command line interface (CLI).'),