prepare distribution

Cette révision appartient à :
Felix Lohmeier 2019-08-16 13:15:51 +02:00
Parent caa2ebfde8
révision 5730150b8c
3 fichiers modifiés avec 5 ajouts et 5 suppressions

Voir le fichier

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

Voir le fichier

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

Voir le fichier

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