From f86f26a271162adaeab043f8106603855b384213 Mon Sep 17 00:00:00 2001 From: kasule joseph Date: Wed, 20 Nov 2019 04:41:27 +0200 Subject: [PATCH] update keywords --- .coverage | 2 +- makefile | 1 + rwalocation/main.py | 2 +- setup.py | 4 ++-- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.coverage b/.coverage index 8055c98..58119e1 100644 --- a/.coverage +++ b/.coverage @@ -1 +1 @@ -!coverage.py: This is a private format, don't read it directly!{"lines":{"/Users/kasule/Desktop/ug_dst/rwalocation/main.py":[4,6,7,9,10,15,19,24,27,37,11,12,13]}} \ No newline at end of file +!coverage.py: This is a private format, don't read it directly!{"lines":{"/Users/kasule/Desktop/ug_dst/rwalocation/main.py":[4,6,7,9,10,16,20,26,29,38,39,11,12,13,14,22,23,24,17,27,18,30,31,32,33,34,35,36]}} \ No newline at end of file diff --git a/makefile b/makefile index e47701e..d958867 100644 --- a/makefile +++ b/makefile @@ -7,6 +7,7 @@ build: clean publish: build python -m twine check dist/* python -m twine upload dist/* + python -m twine upload --skip-existing dist/* clean: rm -r build dist *.egg-info || true \ No newline at end of file diff --git a/rwalocation/main.py b/rwalocation/main.py index 0782569..fe05485 100644 --- a/rwalocation/main.py +++ b/rwalocation/main.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -__version__ = "1.1" +__version__ = "0.1.1" import requests import operator diff --git a/setup.py b/setup.py index 02779c4..cca8ef2 100644 --- a/setup.py +++ b/setup.py @@ -37,13 +37,13 @@ def get_version(): version=get_version(), author="kasule joseph", author_email="kasule06joseph@gmail.com", - description="", + description="A Python library for listing locations in Rwanda", long_description=README, long_description_content_type="text/markdown", url="https://github.com/Kasulejoseph/Ahantu.git", packages=find_packages(exclude=EXCLUDE_FROM_PACKAGES), include_package_data=True, - keywords=[], + keywords=['Rwanda', 'Locations', 'Places', 'Ahantu', 'rwalocation'], scripts=[], entry_points={"console_scripts": ["rwalocation=rwalocation:main"]}, zip_safe=False,