diff --git a/.gitignore b/.gitignore index 7822b4d..b618242 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,4 @@ __pycache__ .venv .vim site +.undodir diff --git a/LICENSE.txt b/LICENSE.txt index fcd43fb..a71d0c7 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,5 +1,5 @@ MIT License -Copyright (c) 2020 Ahmed Nafies Okasha Mohamed +Copyright (c) 2020 Ahmed Nafies 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 @@ -14,4 +14,4 @@ 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. \ No newline at end of file +SOFTWARE. diff --git a/README.md b/README.md index 3f70124..c2bdb98 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,13 @@ # Covid -[![CircleCI](https://circleci.com/gh/ahmednafies/covid.svg?style=shield)](https://circleci.com/gh/ahmednafies/covid) [![codecov](https://codecov.io/gh/ahmednafies/covid/branch/master/graph/badge.svg)](https://codecov.io/gh/ahmednafies/covid) ![GitHub Pipenv locked Python version](https://img.shields.io/github/pipenv/locked/python-version/ahmednafies/covid) [![Downloads](https://pepy.tech/badge/covid)](https://pepy.tech/project/covid) ![GitHub](https://img.shields.io/github/license/ahmednafies/covid) +[![CircleCI](https://circleci.com/gh/nf1s/covid.svg?style=shield)](https://circleci.com/gh/nf1s/covid) [![codecov](https://codecov.io/gh/nf1s/covid/branch/master/graph/badge.svg)](https://codecov.io/gh/nf1s/covid) ![GitHub Pipenv locked Python version](https://img.shields.io/github/pipenv/locked/python-version/nf1s/covid) [![Downloads](https://pepy.tech/badge/covid)](https://pepy.tech/project/covid) ![GitHub](https://img.shields.io/github/license/nf1s/covid) ## Description Python package to get information regarding the novel corona virus provided by Johns Hopkins university and worldometers.info -Full Documentation can be found [here](https://ahmednafies.github.io/covid/) +Full Documentation can be found [here](https://nf1s.github.io/covid/) ![corona.jpeg](docs/img/corona.jpeg) diff --git a/covid/__init__.py b/covid/__init__.py index 0f274db..4b4e0f5 100644 --- a/covid/__init__.py +++ b/covid/__init__.py @@ -3,10 +3,10 @@ from covid.john_hopkins import Covid as JohnHopkinsCovid from covid.worldometers import Covid as WorldometersCovid -__author__ = "Ahmed Nafies Okasha Mohamed " -__copyright__ = "Copyright 2020, Ahmed Nafies Okasha Mohamed" +__author__ = "Ahmed Nafies " +__copyright__ = "Copyright 2020, Ahmed Nafies" __license__ = "MIT" -__version__ = "2.5.1" +__version__ = "2.5.2" services = { "john_hopkins": JohnHopkinsCovid, diff --git a/docs/index.md b/docs/index.md index 9c5f25d..a1f1589 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,14 +1,14 @@ # Getting Started -[![CircleCI](https://circleci.com/gh/ahmednafies/covid.svg?style=shield)](https://circleci.com/gh/ahmednafies/covid) ![CircleCI](https://img.shields.io/circleci/build/github/ahmednafies/covid/master) [![codecov](https://codecov.io/gh/ahmednafies/covid/branch/master/graph/badge.svg)](https://codecov.io/gh/ahmednafies/covid) ![GitHub Pipenv locked Python version](https://img.shields.io/github/pipenv/locked/python-version/ahmednafies/covid) ![GitHub top language](https://img.shields.io/github/languages/top/ahmednafies/covid) ![PyPI](https://img.shields.io/pypi/v/covid) [![Downloads](https://pepy.tech/badge/covid)](https://pepy.tech/project/covid) ![license](https://img.shields.io/badge/license-MIT-green) -![GitHub pull requests](https://img.shields.io/github/issues-pr/ahmednafies/covid) ![GitHub closed pull requests](https://img.shields.io/github/issues-pr-closed/ahmednafies/covid) ![GitHub issues](https://img.shields.io/github/issues/ahmednafies/covid) ![GitHub closed issues](https://img.shields.io/github/issues-closed/ahmednafies/covid) +[![CircleCI](https://circleci.com/gh/nf1s/covid.svg?style=shield)](https://circleci.com/gh/nf1s/covid) ![CircleCI](https://img.shields.io/circleci/build/github/nf1s/covid/master) [![codecov](https://codecov.io/gh/nf1s/covid/branch/master/graph/badge.svg)](https://codecov.io/gh/nf1s/covid) ![GitHub Pipenv locked Python version](https://img.shields.io/github/pipenv/locked/python-version/nf1s/covid) ![GitHub top language](https://img.shields.io/github/languages/top/nf1s/covid) ![PyPI](https://img.shields.io/pypi/v/covid) [![Downloads](https://pepy.tech/badge/covid)](https://pepy.tech/project/covid) ![license](https://img.shields.io/badge/license-MIT-green) +![GitHub pull requests](https://img.shields.io/github/issues-pr/nf1s/covid) ![GitHub closed pull requests](https://img.shields.io/github/issues-pr-closed/nf1s/covid) ![GitHub issues](https://img.shields.io/github/issues/nf1s/covid) ![GitHub closed issues](https://img.shields.io/github/issues-closed/nf1s/covid) Python package to get information regarding the novel corona virus provided by Johns Hopkins university and worldometers.info ![corona.jpeg](img/corona.jpeg) -Full code on [github](https://github.com/ahmednafies/covid) +Full code on [github](https://github.com/nf1s/covid) ## Requirements diff --git a/setup.py b/setup.py index b2dcc14..456deed 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,7 @@ # -*- coding: utf-8 -*- import io import re + from setuptools import setup with io.open("README.md") as f: @@ -15,7 +16,7 @@ description="Python package to get information regarding the novel corona virus provided by Johns Hopkins university and worldometers.info", long_description=long_description, long_description_content_type="text/markdown", - url="https://ahmednafies.github.io/covid/", + url="https://nf1s.github.io/covid/", author="Ahmed Nafies", author_email="ahmed.nafies@gmail.com", license="MIT", @@ -34,8 +35,8 @@ "docs": ["mkdocs", "mkdocs-material"], }, project_urls={ - "Documentation": "https://ahmednafies.github.io/covid/", - "Source": "https://github.com/ahmednafies/covid", + "Documentation": "https:/nf1s.github.io/covid/", + "Source": "https://github.com/nf1s/covid", }, classifiers=[ "Intended Audience :: Developers",