Skip to content

Commit

Permalink
Fix long description and release version 0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
aktech committed Apr 11, 2020
1 parent 2f1aa76 commit 3da4eea
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions criclive/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
SOURCE_URL = "https://www.espncricinfo.com/scores/"


def print_scores(scores):
def _print_scores(scores):
table = [
[
f"{score['first_team']['name']} {score['first_team']['score']}",
Expand Down Expand Up @@ -59,5 +59,5 @@ def _extract_score(score_soup):

def main():
scores = get_scores()
print_scores(scores)
_print_scores(scores)

7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@

from setuptools import setup, find_packages

with open("README.md") as fh:
long_description = fh.read()
long_description = """
Cricket Live: Get Live scores of all cricket matches in your Command Line.
"""

setup(
name='criclive',
version='0.1.1',
version='0.2',
description='Live Cricket Scores in Command Line.',
author='Amit Kumar',
license='MIT',
Expand Down

0 comments on commit 3da4eea

Please sign in to comment.