From 158598ab8c3c0b9ec5d075b16096dd3a4dfdc3bf Mon Sep 17 00:00:00 2001
From: Christos Baziotis <christos.baziotis@gmail.com>
Date: Tue, 17 May 2022 11:04:09 +0100
Subject: [PATCH] update README update pypi

---
 README.md         |  9 +++++++--
 ekphrasis/LICENCE | 21 +++++++++++++++++++++
 pypi_push.sh      |  4 ++--
 requirements.txt  |  2 +-
 setup.py          |  2 +-
 5 files changed, 32 insertions(+), 6 deletions(-)
 create mode 100644 ekphrasis/LICENCE

diff --git a/README.md b/README.md
index 176a017..17b3172 100644
--- a/README.md
+++ b/README.md
@@ -24,10 +24,15 @@ Citation:
 **Disclaimer:** The library is no longer actively developed. I will try to resolve important issues, but I can't make any promises.
 
 # Installation
+
+build from source 
 ```
-pip install ekphrasis
+pip install git+git://github.com/cbaziotis/ekphrasis.git
+```
+or install from pypi
+```
+pip install ekphrasis -U
 ```
-
 
 # Overview
 
diff --git a/ekphrasis/LICENCE b/ekphrasis/LICENCE
new file mode 100644
index 0000000..dbc0cdc
--- /dev/null
+++ b/ekphrasis/LICENCE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2022 Christos Baziotis
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/pypi_push.sh b/pypi_push.sh
index 51f006a..ce36bd2 100755
--- a/pypi_push.sh
+++ b/pypi_push.sh
@@ -7,6 +7,6 @@ rm -rf dist
 python setup.py sdist bdist_wheel
 pip wheel -r requirements.txt
 
-twine register dist/*.tar.gz
+# twine register dist/*.tar.gz
 twine upload dist/*
-python setup.py sdist upload -r pypi
+# python setup.py sdist upload -r pypi
diff --git a/requirements.txt b/requirements.txt
index 0634499..9928e92 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -3,7 +3,7 @@ colorama==0.3.9
 matplotlib==2.2.2
 setuptools==36.2.5
 termcolor==1.1.0
-numpy==1.13.1
+numpy==1.19.1
 nltk==3.2.4
 ujson==1.35
 ftfy==4.4.3
diff --git a/setup.py b/setup.py
index 65ac882..0ce3e5d 100644
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,7 @@
 from setuptools import setup, find_packages
 
 setup(name='ekphrasis',
-      version='0.5.2',
+      version='0.5.4',
       description='Text processing tool, geared towards text from '
                   'social networks, such as Twitter or Facebook. '
                   'Ekphrasis performs tokenization, word normalization, '