prepare distribution
This commit is contained in:
parent
caa2ebfde8
commit
5730150b8c
|
@ -2,4 +2,3 @@ include README.md
|
||||||
include COPYING.txt
|
include COPYING.txt
|
||||||
recursive-include tests/data *.csv
|
recursive-include tests/data *.csv
|
||||||
recursive-include tests *.py
|
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:
|
- 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
|
- macOS Sierra 10.12
|
||||||
- Windows 10
|
- Windows 10
|
||||||
|
|
||||||
|
@ -670,8 +670,9 @@ Note to myself: When releasing a new version...
|
||||||
```
|
```
|
||||||
git clone https://github.com/opencultureconsulting/openrefine-client.git
|
git clone https://github.com/opencultureconsulting/openrefine-client.git
|
||||||
cd openrefine-client
|
cd openrefine-client
|
||||||
pip install pyinstaller
|
python -m pip install . --user
|
||||||
pyinstaller --onefile refine.py
|
python -m pip install pyinstaller --user
|
||||||
|
pyinstaller --onefile refine.py --hidden-import google.refine__main__.py
|
||||||
```
|
```
|
||||||
|
|
||||||
4. Create release in GitHub
|
4. Create release in GitHub
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -25,7 +25,7 @@ def read(filename):
|
||||||
return open(os.path.join(os.path.dirname(__file__), filename)).read()
|
return open(os.path.join(os.path.dirname(__file__), filename)).read()
|
||||||
|
|
||||||
setup(name='openrefine-client',
|
setup(name='openrefine-client',
|
||||||
version='0.3.6',
|
version='0.3.7',
|
||||||
description=('The OpenRefine Python Client Library provides an '
|
description=('The OpenRefine Python Client Library provides an '
|
||||||
'interface to communicating with an OpenRefine server. '
|
'interface to communicating with an OpenRefine server. '
|
||||||
'This fork extends the command line interface (CLI).'),
|
'This fork extends the command line interface (CLI).'),
|
||||||
|
|
Loading…
Reference in New Issue