prepare distribution

このコミットが含まれているのは:
Felix Lohmeier 2019-08-16 13:15:51 +02:00
コミット 5730150b8c
3個のファイルの変更5行の追加5行の削除

ファイルの表示

@ -2,4 +2,3 @@ include README.md
include COPYING.txt
recursive-include tests/data *.csv
recursive-include tests *.py
prune docker

ファイルの表示

@ -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

ファイルの表示

@ -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).'),