From 0c26aad39aa6ec6ec8681e76ad838ed2578cf0a1 Mon Sep 17 00:00:00 2001 From: Felix Lohmeier Date: Fri, 2 Aug 2019 23:28:40 +0200 Subject: [PATCH] minor refactoring for dist --- .gitignore | 5 ++--- COPYING.txt => LICENSE | 0 MANIFEST.in | 7 ++++--- docker/Dockerfile | 3 +-- 4 files changed, 7 insertions(+), 8 deletions(-) rename COPYING.txt => LICENSE (100%) diff --git a/.gitignore b/.gitignore index 5749da5..69bf55c 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,5 @@ build dist *.pyc .* -refine_client.egg-info -refine.spec -README.html +openrefine_client.egg-info +todo diff --git a/COPYING.txt b/LICENSE similarity index 100% rename from COPYING.txt rename to LICENSE diff --git a/MANIFEST.in b/MANIFEST.in index f464c19..9b9e6c8 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,5 @@ include README.md -include COPYING.txt -recursive-include tests/data *.csv -recursive-include tests *.py +include LICENSE +prune docker +prune tests +prune todo diff --git a/docker/Dockerfile b/docker/Dockerfile index 7dd3d44..d8483f4 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,13 +1,12 @@ FROM alpine:latest 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 # Install python, pip, unzip, curl and grep RUN apk add --no-cache \ python \ py-pip \ - unzip \ curl \ grep