minor refactoring for dist
This commit is contained in:
parent
a0123e9511
commit
0c26aad39a
|
@ -2,6 +2,5 @@ build
|
||||||
dist
|
dist
|
||||||
*.pyc
|
*.pyc
|
||||||
.*
|
.*
|
||||||
refine_client.egg-info
|
openrefine_client.egg-info
|
||||||
refine.spec
|
todo
|
||||||
README.html
|
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
include README.md
|
include README.md
|
||||||
include COPYING.txt
|
include LICENSE
|
||||||
recursive-include tests/data *.csv
|
prune docker
|
||||||
recursive-include tests *.py
|
prune tests
|
||||||
|
prune todo
|
||||||
|
|
|
@ -1,13 +1,12 @@
|
||||||
FROM alpine:latest
|
FROM alpine:latest
|
||||||
LABEL maintainer="felixlohmeier@opencultureconsulting.com"
|
LABEL maintainer="felixlohmeier@opencultureconsulting.com"
|
||||||
# The OpenRefine Python Client Library from PaulMakepeace provides an interface to communicating with an OpenRefine server. This fork extends the command line interface (CLI) and supports communication between docker containers.
|
# The OpenRefine client provides an interface to communicating with an OpenRefine server and supports batch processing. It is focused on the command line interface (CLI) but may also be used as a Python library.
|
||||||
# Source: https://github.com/opencultureconsulting/openrefine-client
|
# Source: https://github.com/opencultureconsulting/openrefine-client
|
||||||
|
|
||||||
# Install python, pip, unzip, curl and grep
|
# Install python, pip, unzip, curl and grep
|
||||||
RUN apk add --no-cache \
|
RUN apk add --no-cache \
|
||||||
python \
|
python \
|
||||||
py-pip \
|
py-pip \
|
||||||
unzip \
|
|
||||||
curl \
|
curl \
|
||||||
grep
|
grep
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue